2017-06-13 22:35:06 +00:00
|
|
|
/**
|
|
|
|
* ==========================================================================
|
|
|
|
* Twizy/SEVCON configuration shell
|
|
|
|
* ==========================================================================
|
|
|
|
*/
|
|
|
|
#ifndef _TwizyCfg_config_h
|
|
|
|
#define _TwizyCfg_config_h
|
|
|
|
|
2017-06-25 20:10:11 +00:00
|
|
|
// Debug output level:
|
|
|
|
// 1 = show every SDO write
|
|
|
|
#define TWIZY_DEBUG 0
|
|
|
|
|
2017-07-08 18:57:45 +00:00
|
|
|
// Set your CAN MCP clock frequency here:
|
2017-06-13 22:35:06 +00:00
|
|
|
#define TWIZY_CAN_MCP_FREQ MCP_16MHZ
|
|
|
|
|
2017-07-08 18:57:45 +00:00
|
|
|
// Set your CAN CS pin number here:
|
2017-06-13 22:35:06 +00:00
|
|
|
#define TWIZY_CAN_CS_PIN 53
|
|
|
|
|
2017-07-08 18:57:45 +00:00
|
|
|
// Set your CAN IRQ pin here (0 = no IRQ):
|
|
|
|
#define TWIZY_CAN_IRQ_PIN 0
|
|
|
|
|
2017-06-13 22:35:06 +00:00
|
|
|
#endif // _TwizyCfg_config_h
|
|
|
|
|