I need a pointer to a static 2-dimensional array. How is this done?
static uint8_t l_matrix[10][20]; void test(){ uint8_t **matrix_ptr = l_matrix; //wron
You can do it like this:
uint8_t (*matrix_ptr)[10][20] = &l_matrix;