Files
panda-meb/board/config.h
Jessy Diamond Exum a0616a2bc2 Large Panda CAN cleanup. Restrict GMLAN to valid baud rates.
Work towards removing/centralizing ifdefs for CAN3 and PANDA
2017-07-11 16:55:36 -07:00

23 lines
353 B
C

#ifndef PANDA_CONFIG_H
#define PANDA_CONFIG_H
#include "rev.h"
//#define DEBUG
//#define DEBUG_USB
//#define CAN_LOOPBACK_MODE
#define USB_VID 0xbbaa
#define USB_PID 0xddcc
#define CAN_DEFAULT_BITRATE 500000 // 500 khz
#define GMLAN_DEFAULT_BITRATE 33333 // 33.333 khz
#define FIFO_SIZE 0x100
#define NULL ((void*)0)
#define PANDA_SAFETY
#endif