Open tbe opened 7 years ago
Issue by ron064 Thursday Oct 23, 2014 at 03:38 GMT # Sample: Friday Sep 13, 2013 at 22:58 GMT Originally opened as https://github.com/pebble/cloudpebble/issues/109
Example: In h file: #define NUM_SLOT 4 In C file few lines like: uint8_t AnimDig[NUM_SLOT]= {0,0,0,0};
#define NUM_SLOT 4
uint8_t AnimDig[NUM_SLOT]= {0,0,0,0};
Now change to #define NUM_SLOT 6 and: uint8_t AnimDig[NUM_SLOT]= {0,0,0,0,0,0};
#define NUM_SLOT 6
uint8_t AnimDig[NUM_SLOT]= {0,0,0,0,0,0};
and get error: "excess elements in array initializer"
Comment by ron064 Monday Nov 10, 2014 at 02:10 GMT # Sample: Friday Sep 13, 2013 at 22:58 GMT
There is refresh button on the side, but it doesn't remove incorrect markings yet
Issue by ron064 Thursday Oct 23, 2014 at 03:38 GMT # Sample: Friday Sep 13, 2013 at 22:58 GMT Originally opened as https://github.com/pebble/cloudpebble/issues/109
Example: In h file:
#define NUM_SLOT 4
In C file few lines like:uint8_t AnimDig[NUM_SLOT]= {0,0,0,0};
Now change to
#define NUM_SLOT 6
and:uint8_t AnimDig[NUM_SLOT]= {0,0,0,0,0,0};
and get error: "excess elements in array initializer"