Modularizando o src

Dependencies:   EALib EthernetInterface_vz mbed-rtos mbed

Fork of header_main_colinas_V0-20-09-14 by VZTECH

Committer:
klauss
Date:
Tue Mar 10 18:10:57 2015 +0000
Revision:
105:a930035b6556
Parent:
100:09a23fcd3bdf
Child:
109:a5b8264ffbbc
sprint 0;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Cola 21:0bd688722e81 1 #include "flood.h"
Cola 21:0bd688722e81 2
Cola 21:0bd688722e81 3 uint8_t pflood = 0;
Cola 21:0bd688722e81 4
Cola 21:0bd688722e81 5 Timer tflood;
Cola 21:0bd688722e81 6 int floodcount = 0;
Cola 21:0bd688722e81 7
klauss 29:7246460b73f8 8 void flood (){
klauss 29:7246460b73f8 9 if( tflood.read_us() > floodcount ){
klauss 29:7246460b73f8 10 while( tflood.read_us() > floodcount ){
klauss 29:7246460b73f8 11 floodcount += 20000;
klauss 29:7246460b73f8 12 }
klauss 29:7246460b73f8 13 uint8_t Bflood[300];
klauss 29:7246460b73f8 14 uint8_t j;
klauss 29:7246460b73f8 15 static uint8_t flood_start =0;
klauss 29:7246460b73f8 16 j = flood_start;
klauss 29:7246460b73f8 17 for (int i = 0; i < 300; i++) {
klauss 29:7246460b73f8 18 Bflood[i] = j++;
klauss 29:7246460b73f8 19 }
klauss 29:7246460b73f8 20 flood_start++;
klauss 29:7246460b73f8 21 Bflood[6] = 0x40;
Cola 21:0bd688722e81 22
klauss 74:81c47fff88a5 23 send2callboxes( Bflood );
klauss 100:09a23fcd3bdf 24 if( debug_uart3 ) pc.printf("F");
klauss 105:a930035b6556 25 if( tcp_session && !udp_query ){
klauss 48:195c97f12e8e 26 tcp_client.send_all( "F", strlen( "F" ) );
klauss 48:195c97f12e8e 27 }
klauss 29:7246460b73f8 28 }
Cola 21:0bd688722e81 29 }