X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=app%2Ftriface%2Ftriface.c;h=270619bcc666f8dd5d7b21e00c655e0c58609d49;hb=c6defc3d327b437973cc5471104d6ff299e00f88;hp=00c1a58025fa3ca2d1f0077c51ef553946598431;hpb=cfd59c8655ed7268c9c48aa58560158d235bc0de;p=bertos.git diff --git a/app/triface/triface.c b/app/triface/triface.c index 00c1a580..270619bc 100644 --- a/app/triface/triface.c +++ b/app/triface/triface.c @@ -26,7 +26,7 @@ * invalidate any other reasons why the executable file might be covered by * the GNU General Public License. * - * Copyright 2003, 2004, 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 * * --> @@ -35,22 +35,30 @@ * * \author Marco Benelli * \author Bernardo Innocenti + * \author Daniele Basile * * \brief Windowing system test. */ +#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 -#include "protocol.h" -#include "hw_input.h" -#include "hw_adc.h" + + +static KFileSerial fd_ser; int main(void) { @@ -69,24 +77,25 @@ int main(void) TagPacket pkt; /* Open the main communication port */ - Serial *host_port = ser_open(CONFIG_SER_HOSTPORT); - ser_setbaudrate(host_port, CONFIG_SER_HOSTPORTBAUDRATE); + ser_init(&fd_ser, CONFIG_TRIFACE_PORT); + ser_setbaudrate(&fd_ser, CONFIG_TRIFACE_BAUDRATE); - pkt.tag_ser = ser_open(TAG_SER_PORT); + ser_init(pkt.tag_ser, TAG_SER_PORT); ser_setbaudrate(pkt.tag_ser, TAG_SER_BAUDRATE); - pkt.comm_ser = host_port; - keytag_init(&pkt); - + pkt.comm_ser = &fd_ser; + keytag_init(&pkt); - protocol_init(host_port); + protocol_init(&fd_ser.fd); // Main loop for(;;) { - protocol_run(host_port); + protocol_run(&fd_ser.fd); keytag_poll(&pkt); } return 0; } + +