Merge pull request #14 from jhbruhn/feature/nrf52833_pin_fix

Fix pinout for fast discharge pin on E73...E
This commit is contained in:
rbaron 2021-09-03 19:00:47 +02:00 committed by GitHub
commit 31570f08e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,12 @@
// PWM. // PWM.
#define PRST_PWM_PIN NRF_GPIO_PIN_MAP(0, 5) #define PRST_PWM_PIN NRF_GPIO_PIN_MAP(0, 5)
#ifdef NRF52833_XXAA
#define PRST_FAST_DISCH_PIN NRF_GPIO_PIN_MAP(0, 25)
#else
#define PRST_FAST_DISCH_PIN NRF_GPIO_PIN_MAP(1, 10) #define PRST_FAST_DISCH_PIN NRF_GPIO_PIN_MAP(1, 10)
#endif
// SHT3C temp/humidity sensor. // SHT3C temp/humidity sensor.
#define PRST_SHT3C_DEBUG 0 #define PRST_SHT3C_DEBUG 0