Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- tftp
- AWS
- 디바이스드라이버
- putty
- 라즈베리파이3 라즈비안
- 일곱 난쟁이
- GPIO
- 백준
- 인접행렬
- stack
- deque
- tftp-hpa
- dfs recursive
- gui
- 라즈베리파이3
- 모듈
- 최단경로
- uboot
- 디바이스 드라이버
- 2309
- 라즈베리파이 uboot
- DFS
- Module.symvers
- STL deque
- u-boot
- .config
- 한수
- tftp 서버
- 라즈베리파이3 ftfp
- 라즈비안
Archives
- Today
- Total
목록C++ (2)
달공이와 임베디드
[C++] Class-based Thread &Timer
#include #include #include #include using namespace std; class GuiView; class GUIViewManager { private: static vector gui_list; static int gui_update_interval_milliseconds; GUIViewManager(int _gui_update_interval_milliseconds = 10) : gui_update_interval_milliseconds(_gui_update_interval_milliseconds){} ~GUIViewManager(); public: static GUIViewManager* getInstance() { static GUIViewManager instan..
C++
2020. 2. 17. 21:55
[C++] Thread-based Update
#include #include #include using namespace std; bool isChangeStated = false; void updateGui() { isChangeStated = true; } void finishUpdateGui() { isChangeStated = false; } void ShowLedState(bool& isLEDon) { while(1) { if (isChangeStated) { finishUpdateGui(); cout
C++
2020. 2. 17. 20:33