mirror of
https://github.com/whowechina/mai_pico.git
synced 2024-11-11 23:27:10 +01:00
Fix: Minor update on function signature
This commit is contained in:
parent
2aca017d13
commit
2d4b533658
@ -167,7 +167,7 @@ const uint16_t *touch_raw()
|
||||
return readout;
|
||||
}
|
||||
|
||||
const uint16_t *map_raw_to_zones(const uint16_t* raw) {
|
||||
const uint16_t *map_raw_to_zones(uint16_t* raw) {
|
||||
static uint16_t zones[36];
|
||||
|
||||
for (int i = 0; i < 34; i++) {
|
||||
|
@ -29,7 +29,7 @@ uint64_t touch_touchmap();
|
||||
void touch_set_map(unsigned sensor, unsigned key);
|
||||
|
||||
const uint16_t *touch_raw();
|
||||
const uint16_t *map_raw_to_zones(const uint16_t *raw);
|
||||
const uint16_t *map_raw_to_zones(uint16_t *raw);
|
||||
bool touch_sensor_ok(unsigned i);
|
||||
|
||||
void touch_update_config();
|
||||
|
Loading…
Reference in New Issue
Block a user