connect to application

This commit is contained in:
Conor Patrick
2019-05-09 02:26:32 -04:00
parent 898d45f871
commit aff8d10432
3 changed files with 109 additions and 49 deletions

View File

@ -1,11 +1,15 @@
#ifndef _SENSE_H_
#define _SENSE_H_
#include <stdint.h>
extern int _run_sense_app;
void sense_init();
void tsc_init();
uint32_t tsc_read_button(uint32_t index);
// For testing
void sense_run();
#endif