b39bd6b6f5
- Simplified app registration with a C++ wrapper for the TactilityC. - Rename the various app classes from `Application` to more specific names like `Calculator` etc.
11 lines
112 B
C++
11 lines
112 B
C++
#include "Gpio.h"
|
|
|
|
extern "C" {
|
|
|
|
int main(int argc, char* argv[]) {
|
|
registerApp<Gpio>();
|
|
return 0;
|
|
}
|
|
|
|
}
|