Getting size of a specific byte array from an array of pointers to bytes
- by Pat James
In the following example c code, used in an Arduino project, I am looking for the ability to get the size of a specific byte array within an array of pointers to bytes, for example
void setup()
{
Serial.begin(9600); // for debugging
byte zero[] = {8, 169, 8, 128, 2,171,145,155,141,177,187,187,2,152,2,8,134,199};
byte…