Skip to content

Added LPC1114 support and fixed hard fault #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Removed detach() call in test case
  • Loading branch information
toyowata committed Aug 16, 2013
commit c26d2a990daa8ec00cb30b9c0cfbd2da5b2c5d11
2 changes: 0 additions & 2 deletions libraries/tests/mbed/timeout/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,12 @@ void toggleOff (void);
void toggleOn (void) {
out = 1;
led = 1;
timer.detach();
timer.attach_us(toggleOff, 10000);
}

void toggleOff(void) {
out = 0;
led = 0;
timer.detach();
timer.attach_us(toggleOn, 30000);
}

Expand Down