tdse-tp3_04-interactive_menu

Index Commits Files Refs
app/readme.txt (1362B)
   1 Example: tdse-tp3_04-interactive_menu
   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_sensor.c (task_sensor.h, task_sensor_attribute.h) 
  17    Non-Blocking & Update By Time Code -> Sensor Modeling
  18    
  19   task_menu.c (task_menu.h) 
  20    Non-Blocking & Update By Time Code -> Menu Code Integration
  21   
  22   display.c (display.h)
  23    Non-Blocking Code -> Display Code Library
  24 
  25   logger.h (logger.c)
  26    Utilities for Retarget "printf" to Console
  27 
  28   dwt.h
  29    Utilities for Mesure "clock cycle" and "execution time" of code
  30   
  31   systick.c (systick.h) 
  32    Utilities for delay "microseconds"
  33 
  34   Special connection requirements:
  35    There are no special connection requirements for this example.
  36 
  37 Build procedures:
  38 Visit the Getting started with STM32: STM32 step-by-step at 
  39 "https://wiki.st.com/stm32mcu/wiki/STM32StepByStep:Getting_started_with_STM32_:_STM32_step_by_step"
  40 to get started building STM32 Projects.