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 programmingtest by
main.cpp
00001 #include "mbed.h" 00002 #include "Controler.h" 00003 #include "Canal.h" 00004 #include "Communication.h" 00005 #include <vector> 00006 00007 DigitalOut myled(LED1); 00008 00009 Canal ch[30]; 00010 00011 Serial pc(USBTX,USBRX);; 00012 00013 int main() { 00014 00015 vector<uint32_t> activeChannel; 00016 00017 while(1){ 00018 00019 ch[1].setState(1); 00020 ch[10].setState(1); 00021 00022 activeChannel = checkActivity(ch); 00023 00024 sendActivityState(&pc,activeChannel); 00025 00026 00027 } 00028 } 00029 00030
Generated on Sat Jul 16 2022 01:34:18 by
1.7.2
