We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d16a46a commit c3bc4c0Copy full SHA for c3bc4c0
src/dsp402.cpp
@@ -33,6 +33,7 @@ MODULE_DEF(module_dsp402, module_dsp402::dsp402);
33
34
using namespace std;
35
using namespace robotkernel;
36
+using namespace robotkernel::helpers;
37
using namespace module_dsp402;
38
39
const static uint16_t STATUS_QUICK_STOP_MASK = 0x0020;
@@ -347,7 +348,7 @@ void dsp402::init() {
347
348
}
349
350
std::list<YAML::Node> device_instances_list;
- robotkernel::parse_templates(config, device_instances_list);
351
+ parse_templates(config, device_instances_list);
352
353
for (const auto& inst : device_instances_list) {
354
devices.push_back(make_shared<dsp402_device>(this, inst));
0 commit comments