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.
main.cpp
- Committer:
- rgsbuap
- Date:
- 2019-10-04
- Revision:
- 26:17dcdd3664fc
- Parent:
- 25:90e7333db6a7
File content as of revision 26:17dcdd3664fc:
#include "mbed.h" //Serial port (UART) configuration Serial pc(USBTX,USBRX); int main() { int8_t x=0; pc.printf("El tamano en bytes de int8_t es: %d \r\n",sizeof(int8_t)); while(1) { wait(0.2); pc.printf("El valor de x es: %d \r\n",x); x = x+1; } }