2024-03-09 11:10:52 +01:00
|
|
|
#ifndef CONFIG_H
|
|
|
|
#define CONFIG_H
|
|
|
|
|
|
|
|
static constexpr unsigned HALF_LEN = 0x80u;
|
|
|
|
static constexpr unsigned MAXPWM = 2000u;
|
|
|
|
|
2024-03-10 17:40:00 +01:00
|
|
|
#ifdef __riscv
|
|
|
|
#define LED_CFG GPIOD,4
|
|
|
|
#elif __arm__
|
|
|
|
#define LED_CFG GpioPortA,0
|
|
|
|
#else
|
|
|
|
#error "bad target"
|
|
|
|
#endif
|
|
|
|
|
2024-03-09 11:10:52 +01:00
|
|
|
#endif // CONFIG_H
|