File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1- #pragma once
1+ #ifndef OPEN_ASTRO_FIRMWARE_MOUNT_MOUNT_HPP
2+ #define OPEN_ASTRO_FIRMWARE_MOUNT_MOUNT_HPP
23
34#include < inttypes.h>
45
@@ -35,3 +36,5 @@ class Mount
3536 */
3637 bool setTargetRa (unsigned int h, unsigned int m, unsigned int s);
3738};
39+
40+ #endif
Original file line number Diff line number Diff line change @@ -7,4 +7,8 @@ config MOUNT_THREAD_STACK_SIZE
77 The size of the stack used by the mount thread.
88 The default value is 0x4000 bytes (16kB).
99
10- endmenu
10+ module = MOUNT
11+ module-str = mount
12+ source "subsys/logging/Kconfig.template.log_config"
13+
14+ endmenu
Original file line number Diff line number Diff line change 22
33#include < zephyr/kernel.h>
44#include < zephyr/logging/log.h>
5- LOG_MODULE_REGISTER (Mount);
5+ LOG_MODULE_REGISTER (Mount, CONFIG_MOUNT_LOG_LEVEL );
66
77Mount::Mount () {
88 LOG_DBG (" creating Mount" );
You can’t perform that action at this time.
0 commit comments