Hello, i have been working on a small n2k to wifi converter for my boat. I have a Yamaha outboard which has a Diagnosis/NMEA2k port on front of it which i want to take advantage off. I tried to use the DataDisplay2.ino example but my board always stays stuck at "Ready" without any messages popping in. I am attaching my board schematics if anyone is interested and parts of the code i changed. I know some of you are really good at coding and may find my question dumb perhaps, but i don't have coding experience so i am making the best of it. Hardware wise i am using a ESP32-WROOM-32D chip with the SN65HVD232Q chip on a custom pcb I appreciate any feedback or help.
#include <Arduino.h>
//#include <Time.h> //
//#define N2k_CAN_INT_PIN 35
#include <NMEA2000_esp32.h> --- I added NMEA2000_ESP32 since i am using a ESP32 board
#include <NMEA2000_CAN.h>
#include <N2kMessages.h>
#include <N2kMessagesEnumToStr.h>
typedef struct {
unsigned long PGN;
void (*Handler)(const tN2kMsg &N2kMsg);
} tNMEA2000Handler;

