Merge branch 'obp40' of github.com:thooge/esp32-nmea2000-obp60 into obp40

This commit is contained in:
Thomas Hooge 2025-01-18 17:16:11 +01:00
commit 2be67f1659
2 changed files with 14 additions and 2 deletions

View File

@ -23,6 +23,18 @@ Differences to OBP60
+ SD card interface + SD card interface
GPIO assignments
----------------
NMEA0183
IO9 - RS485 TX
IO14 - RS485 RX
NMEA2000/CAN
IO15 - CAN TX
IO16 - CAN RX
Keyboard Keyboard
-------- --------

View File

@ -19,7 +19,7 @@
#define ESP32_CAN_TX_PIN 15 #define ESP32_CAN_TX_PIN 15
#define ESP32_CAN_RX_PIN 16 #define ESP32_CAN_RX_PIN 16
// Bus load in 50mA steps // Bus load in 50mA steps
#define N2K_LOAD_LEVEL 2 // 5x50mA = 100mA max bus load with back light on #define N2K_LOAD_LEVEL 2 // 2x50mA = 100mA max bus load
// RS485 NMEA0183 // RS485 NMEA0183
#define GWSERIAL_TX 9 #define GWSERIAL_TX 9
#define GWSERIAL_RX 14 #define GWSERIAL_RX 14