X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=app%2Ftriface%2Ftriface.c;h=270619bcc666f8dd5d7b21e00c655e0c58609d49;hb=c5458f1e197c3a3e9e100a5ed5f6df417bb0a87c;hp=5856c9f06ea20cc0fe5e917eba35e242085e2057;hpb=9ba9dcf2a59a952609e19154e11de3e2478cbf42;p=bertos.git diff --git a/app/triface/triface.c b/app/triface/triface.c index 5856c9f0..270619bc 100644 --- a/app/triface/triface.c +++ b/app/triface/triface.c @@ -26,7 +26,8 @@ * invalidate any other reasons why the executable file might be covered by * the GNU General Public License. * - * Copyright 2006 Develer S.r.l. (http://www.develer.com/) + * Copyright 2003, 2004, 2006, 2008 Develer S.r.l. (http://www.develer.com/) + * Copyright 2000 Bernardo Innocenti * * --> * @@ -34,52 +35,67 @@ * * \author Marco Benelli * \author Bernardo Innocenti + * \author Daniele Basile * * \brief Windowing system test. */ -/*#* - *#* $Log$ - *#* Revision 1.4 2006/06/14 00:28:52 marco - *#* Removed initial delay. - *#* - *#* Revision 1.3 2006/06/12 21:37:02 marco - *#* implemented some commands (ver and sleep) - *#* - *#* Revision 1.2 2006/06/01 12:29:21 marco - *#* Add first simple protocol command (version request). - *#* - *#* Revision 1.1 2006/05/18 00:41:47 bernie - *#* New triface devlib application. - *#* - *#*/ + +#include "protocol.h" +#include "hw/hw_input.h" +#include "hw/hw_adc.h" +#include "cfg/cfg_ser.h" + +#include #include #include #include -#include +#include + #include +#include + -#include "protocol.h" + +static KFileSerial fd_ser; int main(void) { + /* SPI Port Initialization */ + sipo_init(); + kdbg_init(); timer_init(); -// buz_init(); + adc_init(); + buz_init(); IRQ_ENABLE; + INPUT_INIT; + + /* Initialize Tag serial port and data structure */ + TagPacket pkt; + + /* Open the main communication port */ + ser_init(&fd_ser, CONFIG_TRIFACE_PORT); + ser_setbaudrate(&fd_ser, CONFIG_TRIFACE_BAUDRATE); - Serial *host_port = ser_open(0); - ser_setbaudrate(host_port, 38400); + ser_init(pkt.tag_ser, TAG_SER_PORT); + ser_setbaudrate(pkt.tag_ser, TAG_SER_BAUDRATE); - protocol_init(host_port); + pkt.comm_ser = &fd_ser; + keytag_init(&pkt); + + protocol_init(&fd_ser.fd); // Main loop for(;;) { - protocol_run(host_port); + protocol_run(&fd_ser.fd); + keytag_poll(&pkt); } return 0; } + +