VZTECH / Mbed 2 deprecated main_src

Dependencies:   EALib EthernetInterface_vz mbed-rtos mbed

Fork of header_main_colinas_V0-20-09-14 by VZTECH

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers configs.h Source File

configs.h

00001 #ifndef __CONFIGS_H__
00002 #define __CONFIGS_H__
00003 
00004 #include "mbed.h"
00005 #include "parallelcpld.h"
00006 #include "UART3Interrupt.h"
00007 
00008 extern InterruptIn NextData;                   //IO 96
00009 extern InterruptIn FrameSync;
00010 //Ticker ticker;                              // Timer para Debug
00011 
00012 extern DigitalOut RST;                        // Pino de reset para o CPLD
00013 extern DigitalIn PPD;                         // Pino de conexao com o cristal do CPLD
00014 
00015 extern DigitalOut ENABLE_F_REG;               // Configuracao da Alimentacao do CPLD
00016 extern DigitalOut ENABLE_F_RX;
00017 extern DigitalOut ENABLE_F_TX;
00018 
00019 extern Serial  Uart3;  // default baudrate = 9600; Sem paridade, 8bits, 1 stop-bit 
00020 
00021 int start_cpld( void );
00022 int config_lpc( void );
00023 
00024 #endif