How can I load the GUI Builder project on the IAR embedded wokbench

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

How can I load the GUI Builder project on the IAR embedded wokbench

862件の閲覧回数
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by halitkaya60 on Thu Jul 25 03:52:30 MST 2013
I am working on a FDI uEZ GUI-1788-70WVT. I try to make an basic elevator system menü. I use the GUI builder for Grafic desing and it give ve C source code. How can I load this file IAR Embedded Workbench 6.50

Regards,
ラベル(1)
0 件の賞賛
返信
1 返信

764件の閲覧回数
lpcware
NXP Employee
NXP Employee
Content originally posted in LPCWare by Wouter on Fri Jul 26 04:35:00 MST 2013
I'm not really sure with uEZ, but it should be similar to the way to do it in emWin:
- Download the BSP, open the IAR project
- Remove the current active GUI application from the BSP project
- Add the .c file from the GUI Builder
- Probably you will need to add the GUI entry point to the generated .c file:

void MainTask(void);
void MainTask(void) {

  GUI_Init();
  GUI_CURSOR_Show();
  #if GUI_SUPPORT_MEMDEV
    WM_SetCreateFlags(WM_CF_MEMDEV);
  #endif
  CreateFramewin();
  while (1) {
    GUI_Delay(10);
  }
}

0 件の賞賛
返信