Skip to content
Snippets Groups Projects
  1. Dec 20, 2013
    • Ludwig Knüpfer's avatar
      fix native hwtimer · 751cfe64
      Ludwig Knüpfer authored
      The hardware timer used relative offsets that were never updated
      before. This leads to two problems:
      a) later timers will get pushed into the future by the amount of
         previous timers
      b) if a short timer is set continuously, a longer timer will never be
         called
      
      Example:
      a)
      Timer a with 500 ms is set, timer b with 600 ms is set.
      timer a expires after 500 ms, timer b will be set to expire in 600 ms
      which totals to 1100 ms.
      b)
      Timer a is set to 500 ms, timer b is set to 600 ms.
      Timer a expires and is set again. Now timer a will expire in 500 ms
      and timer b will be pushed further into the future. Repeating this
      will lead to b never expiring.
      751cfe64
  2. Dec 13, 2013
  3. Dec 11, 2013
  4. Dec 10, 2013
  5. Nov 23, 2013
  6. Nov 13, 2013
  7. Nov 12, 2013
    • Ludwig Knüpfer's avatar
      make system calls safer/clean up headers · 7b9d199e
      Ludwig Knüpfer authored
      wrap some libc functions that do system calls (terminal output)
      wrap read/write with syscall guard
      define real_read/write (next dynamic linker find for read/write)
      guard system calls in remaining code
      introduce native_internhal.h
      throw out some debug statements that break things
      clean up includes a bit
      declare board_init in native_internhal.h
      add -ldl to LINKFLAGS for cpu/syscalls
      7b9d199e
  8. Oct 25, 2013
  9. Aug 18, 2013
  10. Aug 17, 2013
  11. Aug 15, 2013
  12. Aug 14, 2013
  13. Aug 04, 2013
  14. Jul 16, 2013
  15. Jun 24, 2013
  16. Jun 21, 2013
  17. Jun 18, 2013
  18. May 15, 2013
  19. May 14, 2013
  20. Apr 03, 2013
  21. Mar 21, 2013
    • Ludwig Knüpfer's avatar
      native cpu fixes · 11973140
      Ludwig Knüpfer authored
      init hwtimer with interrupts enabled
      more error checking for hwtimer
      fix signal handler init in hwtimer
      error checking for irq (not necessary yet afaik)
      11973140
  22. Mar 13, 2013
  23. Mar 06, 2013
Loading