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