X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=app%2Ftriface%2Ftriface.c;h=86f21b2d22fb806dd4c96a8def5a8b07acd22137;hb=6b7a2e7b20bc7fe05a61c17d6d96eb70c67a09c9;hp=5856c9f06ea20cc0fe5e917eba35e242085e2057;hpb=9ba9dcf2a59a952609e19154e11de3e2478cbf42;p=bertos.git diff --git a/app/triface/triface.c b/app/triface/triface.c index 5856c9f0..86f21b2d 100644 --- a/app/triface/triface.c +++ b/app/triface/triface.c @@ -26,60 +26,76 @@ * 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 Bernie Innocenti * * --> * * \version $Id$ * * \author Marco Benelli - * \author Bernardo Innocenti + * \author Bernie 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 Serial fd_ser; +static Serial tag_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(&tag_ser, TAG_SER_PORT); + ser_setbaudrate(&tag_ser, TAG_SER_BAUDRATE); - protocol_init(host_port); + keytag_init(&pkt, &fd_ser.fd, &tag_ser.fd); + + protocol_init(&fd_ser.fd); // Main loop for(;;) { - protocol_run(host_port); + protocol_run(&fd_ser.fd); + keytag_poll(&pkt); } return 0; } + +