InfiniTime/src/drivers/PinMap.h

40 lines
1.1 KiB
C
Raw Normal View History

2021-08-02 15:37:48 -04:00
#pragma once
2021-11-03 18:02:30 -04:00
#include <cstdint>
2021-08-02 15:37:48 -04:00
2021-08-03 14:32:23 -04:00
namespace Pinetime {
namespace PinMap {
2021-08-03 14:40:27 -04:00
2021-08-03 14:32:23 -04:00
#ifdef WATCH_P8
2021-08-03 14:40:27 -04:00
// COLMI P8
2021-08-03 14:32:23 -04:00
static constexpr uint8_t Charging = 19;
static constexpr uint8_t Cst816sReset = 13;
static constexpr uint8_t Button = 17;
#else
2021-08-03 14:40:27 -04:00
// Pinetime
2021-08-03 14:32:23 -04:00
static constexpr uint8_t Charging = 12;
static constexpr uint8_t Cst816sReset = 10;
static constexpr uint8_t Button = 13;
#endif
2021-08-03 14:40:27 -04:00
static constexpr uint8_t Cst816sIrq = 28;
static constexpr uint8_t PowerPresent = 19;
2021-08-03 14:32:23 -04:00
2021-08-03 14:40:27 -04:00
static constexpr uint8_t Motor = 16;
2021-08-03 14:32:23 -04:00
2021-08-04 08:43:04 -04:00
static constexpr uint8_t LcdBacklightLow = 14;
static constexpr uint8_t LcdBacklightMedium = 22;
static constexpr uint8_t LcdBacklightHigh = 23;
2021-08-03 14:32:23 -04:00
2021-08-03 14:40:27 -04:00
static constexpr uint8_t SpiSck = 2;
static constexpr uint8_t SpiMosi = 3;
static constexpr uint8_t SpiMiso = 4;
2021-08-03 14:32:23 -04:00
2021-08-03 14:40:27 -04:00
static constexpr uint8_t SpiFlashCsn = 5;
static constexpr uint8_t SpiLcdCsn = 25;
static constexpr uint8_t LcdDataCommand = 18;
2021-08-03 14:32:23 -04:00
2021-08-03 14:40:27 -04:00
static constexpr uint8_t TwiScl = 7;
static constexpr uint8_t TwiSda = 6;
2021-08-03 14:32:23 -04:00
}
}