![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
research application on sending data to headend
Dependencies: DataStore JobScheduler NetworkServices W5500Interface nanopb protocol
See "main.cpp" documentation on "API Documentation" tab for details about application.
source/jobTestPrint.h@1:eebe442fc126, 2017-07-13 (annotated)
- Committer:
- sgnezdov
- Date:
- Thu Jul 13 20:01:25 2017 +0000
- Revision:
- 1:eebe442fc126
- Child:
- 27:60c12f3f3430
decided how to structure jobs and job contexts
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
sgnezdov | 1:eebe442fc126 | 1 | #pragma once |
sgnezdov | 1:eebe442fc126 | 2 | |
sgnezdov | 1:eebe442fc126 | 3 | class JobTestPrint { |
sgnezdov | 1:eebe442fc126 | 4 | public: |
sgnezdov | 1:eebe442fc126 | 5 | |
sgnezdov | 1:eebe442fc126 | 6 | static void RunAdapter(void *thisPointer) { |
sgnezdov | 1:eebe442fc126 | 7 | JobTestPrint *self = static_cast<JobTestPrint*>(thisPointer); |
sgnezdov | 1:eebe442fc126 | 8 | self->Run(); |
sgnezdov | 1:eebe442fc126 | 9 | } |
sgnezdov | 1:eebe442fc126 | 10 | |
sgnezdov | 1:eebe442fc126 | 11 | void Run(); |
sgnezdov | 1:eebe442fc126 | 12 | }; |