Modularizando o src

Dependencies:   EALib EthernetInterface_vz mbed-rtos mbed

Fork of header_main_colinas_V0-20-09-14 by VZTECH

Committer:
klauss
Date:
Thu Apr 23 21:53:28 2015 +0000
Revision:
117:e9facba9db27
Parent:
116:39a41ebb675c
Child:
119:ee6a53069455
merge dos fw contendo as funcionalidade de bootloader e o fw que estava em campo na ultima vistoria

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 117:e9facba9db27 15 static uint8_t flood_start =0;
klauss 29:7246460b73f8 16 j = flood_start;
klauss 117:e9facba9db27 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 117:e9facba9db27 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 114:472502b31a12 25 if( tcp_session ){
klauss 48:195c97f12e8e 26 tcp_client.send_all( "F", strlen( "F" ) );
klauss 48:195c97f12e8e 27 }
klauss 29:7246460b73f8 28 }
Cola 21:0bd688722e81 29 }