Modularizando o src

Dependencies:   EALib EthernetInterface_vz mbed-rtos mbed

Fork of header_main_colinas_V0-20-09-14 by VZTECH

Committer:
klauss
Date:
Wed May 13 21:18:12 2015 +0000
Revision:
125:8ff4dc96ad58
Parent:
119:ee6a53069455
Child:
135:2f4290590e51
Implementado; - dtx [ on | off ]; - drx [ on | off ]; - drxshow [ on | off ]; - dtxshow [ on | off ]; - end_call <ext>; - request_clock

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 119:ee6a53069455 15 static uint8_t flood_start = 0;
klauss 29:7246460b73f8 16 j = flood_start;
klauss 119:ee6a53069455 17 for (int i = 0; i < 300; i++ )
klauss 119:ee6a53069455 18 {
klauss 29:7246460b73f8 19 Bflood[i] = j++;
klauss 29:7246460b73f8 20 }
klauss 119:ee6a53069455 21
klauss 29:7246460b73f8 22 flood_start++;
klauss 119:ee6a53069455 23
klauss 125:8ff4dc96ad58 24 Bflood[ TYPE_PLACE ] = FLOOD;
klauss 119:ee6a53069455 25 Bflood[ CB_BUFFER_SIZE - 4 ] = 0x5a;
klauss 119:ee6a53069455 26 Bflood[ CB_BUFFER_SIZE - 3 ] = 0x56;
klauss 119:ee6a53069455 27 Bflood[ CB_BUFFER_SIZE - 2 ] = 0x5a;
klauss 119:ee6a53069455 28 Bflood[ CB_BUFFER_SIZE - 1 ] = 0xe1;
Cola 21:0bd688722e81 29
klauss 74:81c47fff88a5 30 send2callboxes( Bflood );
klauss 100:09a23fcd3bdf 31 if( debug_uart3 ) pc.printf("F");
klauss 114:472502b31a12 32 if( tcp_session ){
klauss 48:195c97f12e8e 33 tcp_client.send_all( "F", strlen( "F" ) );
klauss 48:195c97f12e8e 34 }
klauss 29:7246460b73f8 35 }
Cola 21:0bd688722e81 36 }