1

update VBEdemo

This commit is contained in:
2022-07-11 18:17:50 +02:00
parent f50978cf35
commit 957644582c
3 changed files with 6 additions and 4 deletions

View File

@ -8,12 +8,11 @@
* Autor: Michael Schoettner, HHU, 26.12.2016 * * Autor: Michael Schoettner, HHU, 26.12.2016 *
*****************************************************************************/ *****************************************************************************/
#include "user/VBEdemo.h" #include "user/demo/VBEdemo.h"
#include "devices/fonts/Fonts.h" #include "devices/fonts/Fonts.h"
#include "kernel/Globals.h"
// Bitmap // Bitmap
#include "bmp_hhu.cc" #include "user/bmp/bmp_hhu.cc"
/***************************************************************************** /*****************************************************************************
* Methode: VBEdemo::linInterPol1D * * Methode: VBEdemo::linInterPol1D *

View File

@ -11,6 +11,7 @@
#define __VBEdemo_include__ #define __VBEdemo_include__
#include "kernel/threads/Thread.h" #include "kernel/threads/Thread.h"
#include "kernel/Globals.h"
class VBEdemo : public Thread { class VBEdemo : public Thread {
@ -23,7 +24,9 @@ private:
public: public:
// Gib dem Anwendungsthread einen Stack. // Gib dem Anwendungsthread einen Stack.
VBEdemo() {} VBEdemo() {
kout << "Initialized VBEdemo" << endl;
}
// Thread-Startmethode // Thread-Startmethode
void run() override; void run() override;