I tried to program this code on an STM8 Controller:
#include "Imagedata.h"
void main(void)
{
unsigned char *pArray;
pArray=IMAGE_DATA;
while(pArray<=(IMAGE_DATA+(sizeof(IMAGE_DATA)/sizeof(pArray))))
{
SPI_SendData(SPI1,*pArray++ );
}
}
Actually the array is much longer than this but it would take to much space here. The Array is defined in imagedata.c:
#include "imagedata.h"
const unsigned char IMAGE_DATA[]= { 0X00,0X01,0XC8,0X00,0XC8,0X00};
After compiling this code I get the error message: array size unknown. This refers to the line where I put sizeof(IMAGE_DATA). I don't quiet understand what the problem is. Can anyone help?
Your condition looks wrong, both the end value and comparison. Try this:
Note 1:
sizeof char
is by definition 1, so/ sizeof(*pArray)
part is a bit redundant. Matter of taste if it makes code clearer or not.Note 2: It's a common pattern, and explicitly allowed by C, to have "end" pointer which is one past the end of the range. Just be sure to never do
*pEnd
.Note 3:
IMAGE_DATA
must be array forsizeof
to work. It must not be a pointer, or an "array" parameter to function (because that is also a pointer, not really array).Note 4:
IMAGE_DATA
is const, so you need a pointer to const. As a side note, code in this answer makespEnd
a const pointer to const, because the end pointer itself shouldn't be accidentally changed, but this is also a matter of taste and optional.So your actual problem is, IMAGE_DATA isn't fully defined array. Either the definition must include initialization:
Or with explicit size: