/* * Device identification definitions for CANopenNode. */ /* Initial (newly programmed device) CAN bit rate and CANopen Node Id */ #define CO_BITRATE_INITIAL 125 #define CO_NODE_ID_INITIAL 4 /* Manufacturer device name, OD entry 0x1008 */ #define CO_DEVICE_NAME "CANopenDemoADI" /* Manufacturer hardware version, OD entry 0x1009 */ #define CO_HW_VERSION "---" /* Manufacturer software version, OD entry 0x100A, updated on make from git * version. It has form `"--g[-dirty]"`, where `` is * name of the last tag, `` is number of commits above the tag, `g` is for * git, `` is commit ID and `-dirty` shows, if git is not clean. */ #ifndef CO_SW_VERSION #define CO_SW_VERSION "---" #endif /* Identity, OD entry 0x1018 */ #define CO_IDENTITY_VENDOR_ID 0x00000000 #define CO_IDENTITY_PRODUCT_CODE 0x00000001 #define CO_IDENTITY_REVISION_NUMBER 0x00000000 #define CO_IDENTITY_SERIAL_NUMBER 0x00000003