diff options
| author | Avi Levkovich <avi@twine-s.com> | 2020-12-17 14:35:00 +0200 |
|---|---|---|
| committer | Avi Levkovich <avi@twine-s.com> | 2020-12-17 14:35:00 +0200 |
| commit | a84ca31290b18ef2a9ec4c197d86573bb13adb03 (patch) | |
| tree | 5dfae44a32d1575a74e8bfb5276bda8bfa056078 /Software/Embedded_SW/Embedded/Common | |
| parent | e1ee0eafc192d6df9fa41a2749d016473d7563f4 (diff) | |
| download | Tango-a84ca31290b18ef2a9ec4c197d86573bb13adb03.tar.gz Tango-a84ca31290b18ef2a9ec4c197d86573bb13adb03.zip | |
Add BTSR (scripts full suport) + use NonBlocking in Shinko Uart3_Receive
Diffstat (limited to 'Software/Embedded_SW/Embedded/Common')
| -rw-r--r-- | Software/Embedded_SW/Embedded/Common/Sys_PinOut_Config/MCU_MAIN_pinout.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Software/Embedded_SW/Embedded/Common/Sys_PinOut_Config/MCU_MAIN_pinout.c b/Software/Embedded_SW/Embedded/Common/Sys_PinOut_Config/MCU_MAIN_pinout.c index 93ce6cf51..fcede699f 100644 --- a/Software/Embedded_SW/Embedded/Common/Sys_PinOut_Config/MCU_MAIN_pinout.c +++ b/Software/Embedded_SW/Embedded/Common/Sys_PinOut_Config/MCU_MAIN_pinout.c @@ -859,9 +859,14 @@ PinoutSet(void) // Configure the GPIO Pin Mux for PR0 // for I2C1SCL // - MAP_GPIOPinConfigure(GPIO_PR0_I2C1SCL); - MAP_GPIOPinTypeI2CSCL(GPIO_PORTR_BASE, GPIO_PIN_0); + //MAP_GPIOPinConfigure(GPIO_PR0_I2C1SCL); + //MAP_GPIOPinTypeI2CSCL(GPIO_PORTR_BASE, GPIO_PIN_0); + #ifdef USE_UART4_FOR_BTSR + // Configure the GPIO Pin PR0 for BTSR RS485 UART - Set as output to change to uart4 RS485 Direction: + ROM_GPIOPinTypeGPIOOutput(GPIO_PORTR_BASE, GPIO_PIN_0); + ROM_GPIOPinWrite(GPIO_PORTR_BASE, GPIO_PIN_0, 0); + #endif // // Configure the GPIO Pin Mux for PR1 // for I2C1SDA |
