金牌会员
- 积分
- 1777
- 威望
- 873
- 贡献
- 508
- 兑换币
- 271
- 注册时间
- 2012-10-28
- 在线时间
- 198 小时
|
沙冰炒菜 发表于 2013-3-29 18:22
就是指针问题,说是能当数组用,可是一维数组咋整成二维的呢。大哥给我一份你的代码吧
for(total=0;total<size;total++)
{
imgtemp = nrf_buff[total];
bitindex = 0;
for(bitindex=0;bitindex<=7;bitindex++)
{
// uart_putchar(UART0,bitindex);
if( imgtemp & (0x01<<bitindex) )
{
// uart_putchar(UART0,0);
img_buff[h][i*8+bitindex]=0;
}
else
{
img_buff[h][i*8+bitindex]=1;
// uart_putchar(UART0,1);
}
// uart_putchar(UART0,img_buf);
}
i++;
if(i*8==CAMERA_W) {h++;i=0;}
else h=h;
|
|