FileToCArray icon indicating copy to clipboard operation
FileToCArray copied to clipboard

Move the array size in square brackets

Open IvanVnucec opened this issue 1 year ago • 0 comments

Move the array size in square brackets because compiler can check the size and, for me, its has better readability:

// array size is 32
static const uint8_t startup[]  = {

to

static const uint8_t startup[32]  = {

IvanVnucec avatar Oct 14 '24 14:10 IvanVnucec