Ignore:
Timestamp:
Dec 11, 2024, 10:57:31 AM (5 weeks ago)
Author:
Zed
Message:

Tick rate was changed to 1000 in CubeMX.

Location:
ctrl/firmware/Main/CubeMX/Core
Files:
1 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • ctrl/firmware/Main/CubeMX/Core

    • Property svn:ignore set to
      Startup
  • ctrl/firmware/Main/CubeMX/Core/Src/tx_initialize_low_level.S

    r54 r56  
    6868@
    6969SYSTEM_CLOCK      =   100000000
    70 SYSTICK_CYCLES    =   ((SYSTEM_CLOCK / 100) -1)
     70SYSTICK_CYCLES    =   ((SYSTEM_CLOCK / 1000) -1)
    7171
    7272    .text 32
     
    289289;
    290290SYSTEM_CLOCK      EQU   100000000
    291 SYSTICK_CYCLES    EQU   ((SYSTEM_CLOCK / 100) -1)
     291SYSTICK_CYCLES    EQU   ((SYSTEM_CLOCK / 1000) -1)
    292292#ifdef USE_DYNAMIC_MEMORY_ALLOCATION
    293293    RSEG    FREE_MEM:DATA
     
    472472
    473473SYSTEM_CLOCK      =   100000000
    474 SYSTICK_CYCLES    =   ((SYSTEM_CLOCK / 100) -1)
     474SYSTICK_CYCLES    =   ((SYSTEM_CLOCK / 1000) -1)
    475475
    476476    .text 32
Note: See TracChangeset for help on using the changeset viewer.