2022-08-05 23:51:40 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2022-08-05 liYony first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef Pins_Arduino_h
|
|
|
|
#define Pins_Arduino_h
|
|
|
|
|
|
|
|
/* pins alias. Must keep in sequence */
|
|
|
|
#define D0 (0)
|
|
|
|
#define D1 (1)
|
|
|
|
#define D2 (2)
|
|
|
|
#define D3 (3)
|
|
|
|
#define D4 (4)
|
|
|
|
#define D5 (5)
|
|
|
|
#define D6 (6)
|
|
|
|
#define D7 (7)
|
|
|
|
#define D8 (8)
|
|
|
|
#define D9 (9)
|
|
|
|
#define D10 (10)
|
|
|
|
#define D11 (11)
|
|
|
|
#define D12 (12)
|
|
|
|
#define D13 (13)
|
2022-08-08 22:00:03 +08:00
|
|
|
#define A0 (14)
|
|
|
|
#define A1 (15)
|
|
|
|
#define A2 (16)
|
|
|
|
#define A3 (17)
|
|
|
|
#define A4 (18)
|
|
|
|
#define A5 (19)
|
|
|
|
#define A6 (20)
|
2022-08-05 23:51:40 +08:00
|
|
|
|
|
|
|
#define F_CPU 72000000L /* CPU: 72MHz */
|
2022-08-08 22:00:03 +08:00
|
|
|
#define LED_BUILTIN D8 /* Default Built-in LED */
|
2022-08-05 23:51:40 +08:00
|
|
|
|
2022-08-08 22:00:03 +08:00
|
|
|
/*
|
|
|
|
* i2c1 - PB9-SDA PB8-SCL
|
|
|
|
*/
|
2022-08-05 23:51:40 +08:00
|
|
|
#define RTDUINO_DEFAULT_IIC_BUS_NAME "i2c1"
|
|
|
|
|
2022-08-08 22:00:03 +08:00
|
|
|
/*
|
|
|
|
* uart2 - PA2-TX PA3-RX
|
|
|
|
* uart3 - PB10-TX PB11-RX
|
|
|
|
*/
|
2022-08-05 23:51:40 +08:00
|
|
|
#define RTDUINO_SERIAL2_DEVICE_NAME "uart2"
|
|
|
|
#define RTDUINO_SERIAL3_DEVICE_NAME "uart3"
|
|
|
|
|
|
|
|
#endif /* Pins_Arduino_h */
|