#ifndef CONFIG_H
#define CONFIG_H

// Platform / Boards

//#define PLATFORM_PORTENTA_H7_M7
//#define BOARD_NAME "Portenta H7 M7"


#ifdef PLATFORM_PORTENTA_H7_M7
  #include <Arduino_MachineControl.h>
  using namespace machinecontrol;
#endif

#define SERIAL_BAUD_RATE 250000
#define SERIAL_COMMAND_PARSE_INTERVAL 100

#endif // CONFIG_H
