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.
Dependencies: mbed mbed-STM32F103C8T6 USBDevice_STM32F103
Revision 0:0279e8c1f111, committed 2016-07-08
- Comitter:
- hudakz
- Date:
- Fri Jul 08 21:19:45 2016 +0000
- Child:
- 1:0e1269402efd
- Commit message:
- Initial revision
Changed in this revision
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/USBDevice_STM32F103.lib Fri Jul 08 21:19:45 2016 +0000 @@ -0,0 +1,1 @@ +https://developer.mbed.org/users/hudakz/code/USBDevice_STM32F103/#48fe9050cb4a
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Fri Jul 08 21:19:45 2016 +0000
@@ -0,0 +1,21 @@
+#include "stm32f103c8t6.h"
+#include "mbed.h"
+#include "USBSerial.h"
+
+Serial pc(PA_2, PA_3);
+DigitalOut myled(LED1);
+
+int main() {
+ confSysClock(48); // Configuring system clock for USB
+ USBSerial usbSerial;
+
+ pc.baud(9600);
+
+ while(1) {
+ myled = !myled;
+ pc.printf("I am a serial port\r\n");
+ usbSerial.printf("I am an USB serial port\r\n");
+ wait_ms(1000);
+ }
+}
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed-STM32F103C8T6.lib Fri Jul 08 21:19:45 2016 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/hudakz/code/mbed-STM32F103C8T6/#306609fe9dc8
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Fri Jul 08 21:19:45 2016 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/6c34061e7c34 \ No newline at end of file