tdse-tp0_03-hw_sw_test

FIUBA - Electrónica - Taller de Sistemas Embebidos - Trabajo Práctico N°: 0 - Proyecto N°: 03
Index Commits Files Refs README
app/readme.txt (1217B)
   1 Example: tdse-tp0_03-hw_sw_test
   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_a.c (task_a.h) 
  17    Blocking Code
  18 
  19   task_b.c (task_b.h)
  20    Non-Blocking Code
  21 
  22   task_c.c (task_c.h)
  23    Update by Time Code, period = 1mS
  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.