Activity
Reply to
How to wake up from deep sleep?
- I don't see a call to semihost_powerdown().
- 18 Feb 2011
Reply to
How to wake up from deep sleep?
- You need to detach the mbed interface. See here.
- 17 Feb 2011
Reply to
WATCHDOG TIMER Question?
- while (1) {}; is an infinite loop (the loop condition is always true), so it …
- 14 Feb 2011
Reply to
Serial port slow/delayed output
- If you put a newline (\n) in each print, it should be immediate.
- 14 Feb 2011
Reply to
Q: How do mbed libraries do threading/preemption?
- The Timer class does use interrupts.
- 12 Feb 2011
Reply to
software interrupt
- "interrupting an interrupt" is possible, if the new interrupt has higher priority.
- 11 Feb 2011
Reply to
Interrupt problems
- Is zcrsv_flag declared volatile? How do you register the handler? It might be best to …
- 10 Feb 2011
Reply to
math functions ?
- log() returns the natural logarithm (ln), not base 10 (use log10 for that).
- 09 Feb 2011
Reply to
Saving Data
- Just use different filenames :) Here's one example: http://mbed.org/forum/mbed/post/3221/
- 09 Feb 2011
Reply to
RTC Save and Restore
- You can read the values the same way you write them: motor_wh = LPC_RTC->GPREG0; fan_wh …
- 08 Feb 2011
Reply to
Problem with strcmp
- strrchr() wouldn't work on a non-terminated string so that's not it. Stefan, do you see …
- 03 Feb 2011