Our 1st module. LP0 configuration.

This commit is contained in:
Kostas Missos
2018-08-21 04:14:31 +03:00
parent 3d6216a6f3
commit 1d623eacf9
10 changed files with 2869 additions and 9 deletions

View File

@@ -3,8 +3,10 @@
*/
#include "../../common/common_module.h"
#include "../../common/common_gfx.h"
#include "gfx/gfx.h"
void _modInit(cbMainModule_t cb, pmoduleConfiguration_t mc)
void _modInit(void *moduleConfig, bdkParams_t bp)
{
cb("Hello World!");
gfx_puts(bp->gfxCon, "Hello World!");
}