DisplayAPP_Base

Dependents:   GR-Boads_Camera_DisplayApp_base GR-Boads_Camera_DisplayApp_base DisplayApp LED01

Files at this revision

API Documentation at this revision

Comitter:
dkato
Date:
Fri Sep 16 10:26:16 2016 +0000
Parent:
1:fdcf2c6a1167
Child:
3:693902c86ca0
Commit message:
Change to be able to set the stack size.

Changed in this revision

DisplayApp.cpp Show annotated file Show diff for this revision Revisions of this file
DisplayApp.h Show annotated file Show diff for this revision Revisions of this file
--- a/DisplayApp.cpp	Fri Sep 16 08:04:52 2016 +0000
+++ b/DisplayApp.cpp	Fri Sep 16 10:26:16 2016 +0000
@@ -9,7 +9,7 @@
 
     pPcApp = new USBSerial;
 
-    displayThread.set_priority(osPriorityNormal);
+    displayThread.set_priority(change_pri);
     while (1) {
         if (pPcApp->readable()) {
             data = pPcApp->getc();
@@ -86,7 +86,7 @@
     ((DisplayApp *)arg)->display_app_process();
 }
 
-DisplayApp::DisplayApp() : displayThread(DisplayApp::display_app_process_static, (void *)this, osPriorityLow, 1024) {
+DisplayApp::DisplayApp(osPriority tsk_pri, osPriority init_pri, uint32_t stack_size) : change_pri(tsk_pri), displayThread(DisplayApp::display_app_process_static, (void *)this, init_pri, stack_size) {
 }
 
 void DisplayApp::SendHeader(uint32_t size) {
--- a/DisplayApp.h	Fri Sep 16 08:04:52 2016 +0000
+++ b/DisplayApp.h	Fri Sep 16 10:26:16 2016 +0000
@@ -24,8 +24,11 @@
 
     /** Constructor: Initializes DisplayApp.
      *
+     * @param   tsk_pri        Priority of the thread function. (default: osPriorityNormal).
+     * @param   init_pri       Priority of before the USB is connected. (default: osPriorityLow).
+     * @param   stack_size     stack size (in bytes) requirements for the thread function. (default: DEFAULT_STACK_SIZE).
      */
-    DisplayApp();
+    DisplayApp(osPriority tsk_pri = osPriorityNormal, osPriority init_pri = osPriorityLow, uint32_t stack_size = DEFAULT_STACK_SIZE);
 
     /** Send RGB888 data
      *
@@ -97,6 +100,7 @@
     pos_seq_t pos_seq;
     int pos_x;
     int pos_y;
+    osPriority change_pri;
     FunctionPointer event;
 
     void touch_int_callback(void);