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
- putty
- Module.symvers
- tftp 서버
- 라즈베리파이3 라즈비안
- 라즈베리파이3 ftfp
- dfs recursive
- gui
- tftp-hpa
- u-boot
- 2309
- 라즈비안
- 디바이스드라이버
- 인접행렬
- deque
- 한수
- tftp
- STL deque
- 모듈
- DFS
- 라즈베리파이 uboot
- 일곱 난쟁이
- AWS
- 백준
- uboot
- .config
- 디바이스 드라이버
- 최단경로
- stack
- GPIO
- 라즈베리파이3
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