X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fnet%2Fax25.c;h=32adf4ebbfe435c1f6635bf1001a97ab1e2ee342;hb=5f5b4f3e5b6e167c8bd0580b505b7c8a2e5ee481;hp=968e387f477815d1f2bf1f1f1b42cffe18e4eea4;hpb=e8a8b7b79f94fa94f0273f4a8ac04b2fac230e13;p=bertos.git diff --git a/bertos/net/ax25.c b/bertos/net/ax25.c index 968e387f..32adf4eb 100644 --- a/bertos/net/ax25.c +++ b/bertos/net/ax25.c @@ -48,12 +48,12 @@ #define LOG_FORMAT AX25_LOG_FORMAT #include -#include //memset +#include //memset, memcmp +#include //isalnum, toupper #define DECODE_CALL(buf, addr) \ for (unsigned i = 0; i < sizeof((addr)); i++) \ { \ - ASSERT(!(*(buf) & 0x01)); \ (addr)[i] = *(buf)++ >> 1; \ } @@ -93,14 +93,14 @@ static void ax25_decode(AX25Ctx *ctx) msg.ctrl = *buf++; if (msg.ctrl != AX25_CTRL_UI) { - LOG_INFO("Only UI frames are handled, got [%02X]\n", msg.ctrl); + LOG_WARN("Only UI frames are handled, got [%02X]\n", msg.ctrl); return; } msg.pid = *buf++; if (msg.pid != AX25_PID_NOLAYER3) { - LOG_INFO("Only frames without layer3 protocol are handled, got [%02X]\n", msg.pid); + LOG_WARN("Only frames without layer3 protocol are handled, got [%02X]\n", msg.pid); return; } @@ -112,6 +112,17 @@ static void ax25_decode(AX25Ctx *ctx) ctx->hook(&msg); } + +/** + * Check if there are any AX25 messages to be processed. + * This function read available characters from the medium and search for + * any AX25 messages. + * If a message is found it is decoded and the linked callback executed. + * This function may be blocking if there are no available chars and the KFile + * used in \a ctx to access the medium is configured in blocking mode. + * + * \param ctx AX25 context to operate on. + */ void ax25_poll(AX25Ctx *ctx) { int c; @@ -174,6 +185,83 @@ void ax25_poll(AX25Ctx *ctx) } } +static void ax25_putchar(AX25Ctx *ctx, uint8_t c) +{ + if (c == HDLC_FLAG || c == HDLC_RESET + || c == AX25_ESC) + kfile_putc(AX25_ESC, ctx->ch); + ctx->crc_out = updcrc_ccitt(c, ctx->crc_out); + kfile_putc(c, ctx->ch); +} + +static void ax25_sendCall(AX25Ctx *ctx, const AX25Call *addr) +{ + unsigned len = MIN(sizeof(addr->call), strlen(addr->call)); + + for (unsigned i = 0; i < len; i++) + { + uint8_t c = addr->call[i]; + ASSERT(isalnum(c) || c == ' '); + c = toupper(c); + ax25_putchar(ctx, c << 1); + } + + /* Fill with spaces the rest of the CALL if it's shorter */ + if (len < sizeof(addr->call)) + for (unsigned i = 0; i < sizeof(addr->call) - len; i++) + ax25_putchar(ctx, ' ' << 1); +} + +/** + * Send an AX25 frame on the channel. + * \param ctx AX25 context to operate on. + * \param dst the destination callsign for the frame, \see AX25_CALL + * for a handy way to create a callsign on the fly. + * \param src the source callsign for the frame, \see AX25_CALL + * for a handy way to create a callsign on the fly. + * \param _buf payload buffer. + * \param len length of the payload. + */ +void ax25_send(AX25Ctx *ctx, const AX25Call *dst, const AX25Call *src, const void *_buf, size_t len) +{ + const uint8_t *buf = (const uint8_t *)_buf; + + ctx->crc_out = CRC_CCITT_INIT_VAL; + kfile_putc(HDLC_FLAG, ctx->ch); + + ax25_sendCall(ctx, dst); + ax25_putchar(ctx, dst->ssid << 1); + + ax25_sendCall(ctx, src); + ax25_putchar(ctx, (src->ssid << 1) | 0x01); + ax25_putchar(ctx, AX25_CTRL_UI); + ax25_putchar(ctx, AX25_PID_NOLAYER3); + + while (len--) + ax25_putchar(ctx, *buf++); + + /* + * According to AX25 protocol, + * CRC is sent in reverse order! + */ + uint8_t crcl = (ctx->crc_out & 0xff) ^ 0xff; + uint8_t crch = (ctx->crc_out >> 8) ^ 0xff; + ax25_putchar(ctx, crcl); + ax25_putchar(ctx, crch); + + ASSERT(ctx->crc_out == AX25_CRC_CORRECT); + + kfile_putc(HDLC_FLAG, ctx->ch); +} + + +/** + * Init the AX25 protocol decoder. + * + * \param ctx AX25 context to init. + * \param channel Used to gain access to the physical medium + * \param hook Callback function called when a message is received + */ void ax25_init(AX25Ctx *ctx, KFile *channel, ax25_callback_t hook) { ASSERT(ctx);