X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fnet%2Fax25.h;h=0e609136f18e5d56f20b066f39b6ea23eacaa731;hb=e47f203a5648786cd782d921880a77a395570059;hp=ad11e4665671fb10edc6edb2eb8128080aa2303f;hpb=74c7bb68260444eee2831f758b1a9296d6d4ac4e;p=bertos.git diff --git a/bertos/net/ax25.h b/bertos/net/ax25.h index ad11e466..0e609136 100644 --- a/bertos/net/ax25.h +++ b/bertos/net/ax25.h @@ -179,6 +179,8 @@ void ax25_sendVia(AX25Ctx *ctx, const AX25Call *path, size_t path_len, const voi #define ax25_send(ctx, dst, src, buf, len) ax25_sendVia(ctx, ({static AX25Call __path[]={dst, src}; __path;}), 2, buf, len) void ax25_init(AX25Ctx *ctx, KFile *channel, ax25_callback_t hook); +void ax25_print(KFile *ch, const AX25Msg *msg); + int ax25_testSetup(void); int ax25_testTearDown(void); int ax25_testRun(void);