1. 24 Sep, 2014 1 commit
  2. 23 Sep, 2014 1 commit
    • Theodor-Adrian Stana's avatar
      bootloader: FreeRTOS app now boots properly · 6e997732
      Theodor-Adrian Stana authored
      The issue was the SysTick timer, which was configured by the bootloader to
      blink the backlight LEDs, but was not de-configured before booting to the
      application.
      
      Without the SysTick timer de-configured, the FreeRTOS tick timer, which relies
      on the SysTick timer, fired before FreeRTOS could be properly configured. Since
      the FreeRTOS SysTick handler contains some OS-specific functions and data, the
      fact that these were not initialized probably led to a segfault.
      
      This issue was fixed in boot.c, by de-configuring the SysTick timer.
      6e997732
  3. 21 Sep, 2014 1 commit
  4. 18 Sep, 2014 2 commits
  5. 16 Sep, 2014 1 commit
  6. 14 Sep, 2014 1 commit
  7. 07 Sep, 2014 2 commits
  8. 06 Sep, 2014 1 commit
  9. 03 Sep, 2014 1 commit
  10. 02 Sep, 2014 1 commit
  11. 01 Sep, 2014 2 commits
  12. 29 Aug, 2014 2 commits
  13. 28 Aug, 2014 2 commits
  14. 27 Aug, 2014 4 commits
  15. 26 Aug, 2014 10 commits
  16. 25 Aug, 2014 1 commit
  17. 24 Aug, 2014 5 commits
  18. 22 Aug, 2014 2 commits
    • Theodor-Adrian Stana's avatar
      gps: Found and fixed the issue about needing a double ON_OFF pulse · ca039748
      Theodor-Adrian Stana authored
      This was actually wrong, the Antenova M10478 GPS module doesn't need a double
      ON_OFF pin pulse, it just needs an ~150ms delay from the time its EXT_RST pin
      is asserted to the time it can dump out data.
      
      What was happening before is that we didn't have a delay in the gps_init
      function before sending the on_off pulse, and this meant that the pulse was
      missed by the module, which never turned on.
      
      The added delay fixes this issue and we now need only a single pulse.
      ca039748
    • Theodor-Adrian Stana's avatar
      Fix problem with USB debug interface · 24049003
      Theodor-Adrian Stana authored
      The problem was that one needs to STATICALLY allocate the buffer
      that sends the data to the GPS. In this case, making the rxbuf
      static inside gps/main.c fixed the problem.
      
      For safety, the buffer inside usbdbg_puts() was also made static, and aligned
      to a word (32-bit) boundary, as advised by the SiLabs USB device library.
      24049003