Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-blinky-net by
Revision 1:01bef667dbe8, committed 2018-09-30
- Comitter:
- RCMISbed
- Date:
- Sun Sep 30 16:55:30 2018 +0000
- Parent:
- 0:3451e643c64c
- Commit message:
- mbed bliny stm32f303
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 3451e643c64c -r 01bef667dbe8 main.cpp --- a/main.cpp Tue Feb 14 16:04:39 2017 +0000 +++ b/main.cpp Sun Sep 30 16:55:30 2018 +0000 @@ -1,12 +1,34 @@ -#include "mbed.h" - -DigitalOut myled(LED1); - -int main() { - while(1) { - myled = 1; - wait(0.2); - myled = 0; - wait(0.2); - } -} +#include "mbed.h" + +#define TSample 0.001 +#define Periode 300 +#define onTime 10 + +DigitalOut led(LED1); +DigitalOut son(PA_7); + +int wdt = 0; +char msg[] = "Salut artiste"; +Ticker TMainProcess; + +void MainProcess_Isr(void){ + --wdt; + if((wdt< onTime)& (wdt> 0)){led= 1;}; + if(wdt<= 0){led= 0; wdt= Periode;}; + } + +void init(void){ + // son= 1; + TMainProcess.attach(&MainProcess_Isr, TSample); + son= 0; + } + + +// main() runs in its own thread in the OS +int main(void) { + led= 0; + TMainProcess.attach(&MainProcess_Isr, TSample); + while (true) {}; + return 3; +} +