
*
Dependencies: mbed-STM32F103C8T6 mbed
Revision 0:d813e98904a8, committed 2017-04-29
- Comitter:
- BaserK
- Date:
- Sat Apr 29 15:29:05 2017 +0000
- Commit message:
- *
Changed in this revision
diff -r 000000000000 -r d813e98904a8 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Sat Apr 29 15:29:05 2017 +0000 @@ -0,0 +1,21 @@ +#include "stm32f103c8t6.h" +#include "mbed.h" + +// Serial example +// Increases a number every 200 ms and prints it on the screen + +Serial com(SERIAL_TX, SERIAL_RX); +int data = 0; + +int main() +{ + confSysClock(); //Configure system clock (72MHz HSE clock, 48MHz USB clock) + com.baud(9600); + + while (1) + { + com.printf("Value is: %d \r\n", data); + data++; + wait_ms(200); + } +} \ No newline at end of file
diff -r 000000000000 -r d813e98904a8 mbed-STM32F103C8T6.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed-STM32F103C8T6.lib Sat Apr 29 15:29:05 2017 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/hudakz/code/mbed-STM32F103C8T6/#09d8c2eacb4d
diff -r 000000000000 -r d813e98904a8 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sat Apr 29 15:29:05 2017 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/b0220dba8be7 \ No newline at end of file