Aucune description

heyuanjie87 9e0cdec178 Update ipmsg.c il y a 6 ans
examples ae53829ca5 添加第一版 il y a 6 ans
README.md 53b0b85f08 Update README.md il y a 6 ans
SConscript ae53829ca5 添加第一版 il y a 6 ans
ipmsg.c 9e0cdec178 Update ipmsg.c il y a 6 ans
ipmsg.h 41a061e572 logout il y a 6 ans
ipmsg_filerecv.c 131181ec52 整理 il y a 6 ans
ipmsgdef.h ae53829ca5 添加第一版 il y a 6 ans

README.md

ipmsg(飞鸽传书) implementation in RT-Thread

1. 功能

  • 收发文本消息
  • 接收文件(单个每次)

2. 配置

//rtconfig.h
#define PKG_USING_IPMSG        //启用ipmsg
#define IPMSG_FILERECV_ENABLE //启用文件接收服务

#define IPMSG_MSGRS_ENABLE    //启用消息收发示例

#define IPMSG_MSG_BUFSZ 300   //消息缓冲区,不定义默认300字节
#define IPMSG_FILERECV_BUFSZ   1024 //文件接收缓冲区,不定义默认1024字节

3. 示例