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.
Revision 7:24db87395b87, committed 2020-02-14
- Comitter:
- lscordovar
- Date:
- Fri Feb 14 01:49:39 2020 +0000
- Parent:
- 6:2a3a62ee17fa
- Commit message:
- Simulacion de un FT232 a 115200b
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
| mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue Apr 11 20:16:53 2017 +0000
+++ b/main.cpp Fri Feb 14 01:49:39 2020 +0000
@@ -1,10 +1,21 @@
#include "mbed.h"
-RawSerial pc(USBTX, USBRX);
-RawSerial dev(D1, D0);
-DigitalOut led1(LED1);
-DigitalOut led4(LED4);
+RawSerial pc(PA_2,PA_3);
+RawSerial dev(PB_6,PB_7); // tx, rx// tx, rx
+DigitalOut led1(PD_12); // (PTB18)
+DigitalOut led2(PD_13); // (PTB19)
+DigitalOut led4(PD_14); // (PTD1)
+
+/*
+Connecting...
+Chip is ESP8266EX
+Features: WiFi
+Crystal is 26MHz
+MAC: 18:fe:34:d7:a3:da
+
+
+*/
void dev_recv()
{
led1 = !led1;
--- a/mbed.bld Tue Apr 11 20:16:53 2017 +0000 +++ b/mbed.bld Fri Feb 14 01:49:39 2020 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/mbed_official/code/mbed/builds/433970e64889 \ No newline at end of file +https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400 \ No newline at end of file