OpenModem/Modem/main.c

71 lines
1.5 KiB
C
Raw Normal View History

2014-04-03 16:21:37 -04:00
#include <cpu/irq.h>
#include <cfg/debug.h>
#include "afsk.h"
#include <drv/ser.h>
#include <drv/timer.h>
#include <stdio.h>
#include <string.h>
static Afsk afsk;
static Serial ser;
#define ADC_CH 0
2014-04-03 18:39:51 -04:00
///////////////////////// AX25 for testing ////
#include <net/ax25.h>
static AX25Ctx ax25;
static AX25Call path[] = AX25_PATH(AX25_CALL("apzbrt", 0), AX25_CALL("nocall", 0), AX25_CALL("wide1", 1), AX25_CALL("wide2", 2));
#define APRS_MSG ">Test BeRTOS APRS http://www.bertos.org"
static void message_callback(struct AX25Msg *msg)
{
kfile_printf(&ser.fd, "\n\nSRC[%.6s-%d], DST[%.6s-%d]\r\n", msg->src.call, msg->src.ssid, msg->dst.call, msg->dst.ssid);
for (int i = 0; i < msg->rpt_cnt; i++)
kfile_printf(&ser.fd, "via: [%.6s-%d]\r\n", msg->rpt_lst[i].call, msg->rpt_lst[i].ssid);
kfile_printf(&ser.fd, "DATA: %.*s\r\n", msg->len, msg->info);
}
2014-04-04 02:24:22 -04:00
///////////////////////////////////////////////
2014-04-03 18:39:51 -04:00
2014-04-03 16:21:37 -04:00
static void init(void)
{
IRQ_ENABLE;
kdbg_init();
timer_init();
afsk_init(&afsk, ADC_CH, 0);
2014-04-03 18:39:51 -04:00
ax25_init(&ax25, &afsk.fd, message_callback);
2014-04-03 16:21:37 -04:00
ser_init(&ser, SER_UART0);
ser_setbaudrate(&ser, 115200);
}
int main(void)
{
init();
2014-04-03 18:39:51 -04:00
ticks_t start = timer_clock();
2014-04-03 16:21:37 -04:00
while (1)
{
2014-04-03 18:39:51 -04:00
// Raw output, no protocol
2014-04-03 17:22:15 -04:00
if (!fifo_isempty(&afsk.rxFifo)) {
char c = fifo_pop(&afsk.rxFifo);
2014-04-03 16:21:37 -04:00
kprintf("%c", c);
}
2014-04-03 18:39:51 -04:00
// Use AX.25 to send test data
2014-04-04 02:48:34 -04:00
if (timer_clock() - start > ms_to_ticks(4000L))
2014-04-03 18:39:51 -04:00
{
kputs("Test TX\n");
start = timer_clock();
ax25_sendVia(&ax25, path, countof(path), APRS_MSG, sizeof(APRS_MSG));
}
2014-04-03 16:21:37 -04:00
}
return 0;
2014-04-03 16:41:49 -04:00
}