YAHAL
Yet Another Hardware Abstraction Library
Loading...
Searching...
No Matches
wifiTick.h
1// ---------------------------------------------
2// This file is part of
3// _ _ __ _ _ __ __
4// ( \/ ) /__\ ( )_( ) /__\ ( )
5// \ / /(__)\ ) _ ( /(__)\ )(__
6// (__)(__)(__)(_) (_)(__)(__)(____)
7//
8// Yet Another HW Abstraction Library
9// Copyright (C) Andreas Terstegge
10// BSD Licensed (see file LICENSE)
11//
12// ---------------------------------------------
13//
14// This file defines the hardware components
15// on the wifiTick board, when used with a
16// RP2350 Launchpad.
17//
18#ifndef _RP2350_LAUNCHPAD_WIFITICK_H_
19#define _RP2350_LAUNCHPAD_WIFITICK_H_
20
21// ESP8266 /reset
22#define TICK_nRESET 7
23
24// ESP8266 chip PU
25#define TICK_CHIP_PU 37
26
27// LED on wifiTick
28#define TICK_LED 17
29
30// ESP8266 GPIO16
31#define TICK_GPIO16 18
32
33// UART interface
34#define TICK_UART_TX 32
35#define TICK_UART_RX 33
36
37// I2C interface
38#define TICK_I2C_SDA 0
39#define TICK_I2C_SCL 1
40
41// SPI interface
42#define TICK_SPI_CS 5
43#define TICK_SPI_MOSI 3
44#define TICK_SPI_MISO 4
45#define TICK_SPI_CLK 6
46
47#endif // _RP2350_LAUNCHPAD_WIFITICK_H_