tdse-tp3_02-code_integration

Index Commits Files Refs
app/readme.txt (1240B)
   1 Example: tdse-tp3_02-code_integration
   2 
   3  Description:
   4  Bare Metal - Event-Triggered Systems (ETS)
   5  App - retarget_printf_to_Console
   6  Project for STM32 Project (STM32CubeIDE Version: 1.17.0)
   7 
   8   SystemCoreClock     => 64MHz (15.625nS)
   9   SysTick Rate Hertz  => 1000 ticks per second (1mS)
  10 
  11   app.c (app.h)
  12    Endless loops, which execute tasks with fixed computing time. This 
  13    sequential execution is only deviated from when an interrupt event occurs.
  14    Cyclic Executive (Update by Time Code, period = 1mS)
  15 
  16   task_test.c (task_test.h) 
  17    Non-Blocking & Update By Time Code -> Test Code Integration
  18   
  19   display.c (display.h)
  20    Non-Blocking Code -> Display Code Library
  21 
  22   logger.h (logger.c)
  23    Utilities for Retarget "printf" to Console
  24 
  25   dwt.h
  26    Utilities for Mesure "clock cycle" and "execution time" of code
  27   
  28   systick.c (systick.h) 
  29    Utilities for delay "microseconds"
  30 
  31   Special connection requirements:
  32    There are no special connection requirements for this example.
  33 
  34 Build procedures:
  35 Visit the Getting started with STM32: STM32 step-by-step at 
  36 "https://wiki.st.com/stm32mcu/wiki/STM32StepByStep:Getting_started_with_STM32_:_STM32_step_by_step"
  37 to get started building STM32 Projects.