support for c3 and s3 channel restrictions

This commit is contained in:
Wizmo2
2023-09-25 19:32:13 -04:00
parent 53fa83b2dd
commit 60bd591bf8
6 changed files with 11 additions and 6 deletions

View File

@@ -13,11 +13,15 @@
#define I2C_SYSTEM_PORT 1
#define SPI_SYSTEM_HOST SPI2_HOST
#define RMT_NEXT_TX_CHANNEL rmt_system_base_tx_channel++;
#define RMT_NEXT_RX_CHANNEL rmt_system_base_rx_channel--;
extern int i2c_system_port;
extern int i2c_system_speed;
extern int spi_system_host;
extern int spi_system_dc_gpio;
extern int rmt_system_base_channel;
extern int rmt_system_base_tx_channel;
extern int rmt_system_base_rx_channel;
typedef struct {
int timer, base_channel, max;
} pwm_system_t;