What, if any, is the difference between a function parameter SLAVE_5 declared as
const uint8_t SLAVE_5[];
and the same declared as
const uint8_t* SLAVE_5 ?
What, if any, is the difference between a function parameter SLAVE_5 declared as
const uint8_t SLAVE_5[];
and the same declared as
const uint8_t* SLAVE_5 ?
As function parameter this is the same.