NuMaker emWin HMI

main.cpp

Committer:
csyang2
Date:
2 months ago
Revision:
10:c8165817d92a
Parent:
9:1286ec7f3230

File content as of revision 10:c8165817d92a:

#include "mbed.h"

#include "GUI.h"
#include "WM.h"
#include "FRAMEWIN.h"

#include "TouchPanel.h"
//
// Enable emWin touch feature after calibration
//
volatile int g_enable_Touch;
//
// For touch sampling timer
//
Ticker s_ticker_emWinloop;
//
// emWin timer count
//
extern GUI_TIMER_TIME OS_TimeMS;
//
// Tick loop for emWin
//
void task_emWinloop(void)
{
    OS_TimeMS++;
}
//
// loop for emWin touch
//
Thread touch_thread;

void gui_touch_thread()
{
    while (true)
    {
#if GUI_SUPPORT_TOUCH
        if ( g_enable_Touch == 1 )
        {
            GUI_TOUCH_Exec();
        }
#endif
        ThisThread::sleep_for(20);
    }
}
//
// Extern emWin GUI layout
//
extern WM_HWIN CreateFramewin(void);
//
// emWin MainTask to create a GUI layout
//
void MainTask(void)
{
    WM_HWIN hWin;
    char     acVersion[40] = "Framewin: Version of emWin: ";

    printf("Main Task -> \n");

    strcat(acVersion, GUI_GetVersionString());
    hWin = CreateFramewin();
    FRAMEWIN_SetText(hWin, acVersion);
    while (1)
    {
        GUI_Delay(500);
    }
}
//
// Main
//
int main(void)
{
#ifdef MBED_MAJOR_VERSION
    printf("Mbed OS version %d.%d.%d\r\n\n", MBED_MAJOR_VERSION, MBED_MINOR_VERSION, MBED_PATCH_VERSION);
#endif
    //
    // Before touch calibration
    //
    g_enable_Touch = 0;
    //
    // Attach Mbed tick
    //
    s_ticker_emWinloop.attach(&task_emWinloop, 0.001);

#if GUI_SUPPORT_TOUCH
    //
    // Init emWin and touch calibration
    //
    GUI_Init();
    Init_TouchPanel();
    ts_calibrate(__DEMO_TS_WIDTH__, __DEMO_TS_HEIGHT__);
#endif
    //
    // After touch calibration
    //
    g_enable_Touch = 1;
    touch_thread.start(gui_touch_thread);
    //
    // Create GUI layout
    //
    MainTask();

    while(1);
}