Skip to content

Commit

Permalink
firware: app: tasks: Fixing device id struct value #146
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelboing committed May 16, 2024
1 parent 14511ea commit d1d2e99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firmware/app/tasks/startup.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ void vTaskStartup(void)

/* TTC parameters */
ttc_data_buf.hw_version = 0x04;
ttc_data_buf.fw_version = 0x00000400;
ttc_data_buf.device_id = 0xCC2B;
ttc_data_buf.fw_version = 0x00000405;
ttc_data_buf.device_id = 0xCC2A + RADIO_MODULE;

#if defined(CONFIG_DEV_MEDIA_INT_ENABLED) && (CONFIG_DEV_MEDIA_INT_ENABLED == 1)
/* Internal non-volatile memory initialization */
Expand Down

0 comments on commit d1d2e99

Please sign in to comment.