added KTM 1290 Superduke (2023) to CAN-Sources

This commit is contained in:
2023-12-03 23:49:41 +01:00
parent f8a195bd4b
commit aa3a2106aa
2 changed files with 36 additions and 9 deletions

View File

@@ -58,11 +58,13 @@ const size_t GPSBaudRateString_Elements = sizeof(GPSBaudRateString) / sizeof(GPS
#ifdef FEATURE_ENABLE_CAN
typedef enum CANSource_e
{
KTM_890_ADV_R_2021
KTM_890_ADV_R_2021,
KTM_1290_SD_R_2023
} CANSource_t;
const char CANSourceString[][28] = {
"KTM 890 Adventure R (2021)"};
const char CANSourceString[][30] = {
"KTM 890 Adventure R (2021)",
"KTM 1290 Superduke R (2023)"};
const size_t CANSourceString_Elements = sizeof(CANSourceString) / sizeof(CANSourceString[0]);
#endif