初级会员
- 积分
- 131
- 金钱
- 131
- 注册时间
- 2012-7-26
- 在线时间
- 14 小时
|
如何用NRF24L01发送图片?看例程里用的是一个一维数组,一个一个发送。图片的话我改为二维数组,但是函数不对。是不是要改函数库呢?keil提示的错误<br />
main.c(142): error: #167: argument of type "u8 (*)[16]" is incompatible with parameter of type "u8 *"<div>main.c: if(NRF24L01_RxPacket(tmp_buf)==0)//一旦接收到信息,则显示出来.</div>
<div>main.c: ^</div>
<div>main.c(144): warning: #175-D: subscript out of range</div>
<div>main.c: tmp_buf[16][16]=0;//加入字符串结束符</div>
<div>main.c: ^</div>
<div>main.c(145): error: #167: argument of type "u8 (*)[16]" is incompatible with parameter of type "const u8 *"</div>
<div>main.c: LCD_ShowString(0,190,tmp_buf); </div>
<div>main.c: ^</div>
<div>main.c(162): error: #167: argument of type "u8 (*)[16]" is incompatible with parameter of type "u8 *"</div>
<div>main.c: if(NRF24L01_TxPacket(tmp_buf)==TX_OK)</div>
<div>main.c: ^</div>
<div>main.c(165): error: #167: argument of type "u8 (*)[16]" is incompatible with parameter of type "const u8 *"</div>
<div>main.c: LCD_ShowString(0,190,tmp_buf); </div>
<div>main.c: ^</div>
<div>main.c(188): error: #29: expected an expression</div>
<div>main.c: { tmp_buf[x][y]={Pen_Point.X0,Pen_Point.Y0};</div>
<div>main.c: ^</div>
<div>main.c(195): warning: #175-D: subscript out of range</div>
<div>main.c: tmp_buf[16][16]=0;//加入字符串结束符 </div>
<div>main.c: ^</div>
<div>main.c: main.c: 2 warnings, 5 errors</div> |
|