Skip to content

Commit

Permalink
Fix for ambigious gpio
Browse files Browse the repository at this point in the history
Signed-off-by: delphi <cpp.create@gmail.com>
  • Loading branch information
asmfreak committed Oct 4, 2021
1 parent d135b07 commit 38120ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modm/platform/gpio/common/unused.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,13 @@ public:
struct BitBang
{
using Data = detail::DataUnused;
static constexpr Gpio::Signal Signal = Gpio::Signal::BitBang;
static constexpr platform::Gpio::Signal Signal = platform::Gpio::Signal::BitBang;
};
%% for name in all_signals
struct {{ name }}
{
using Data = detail::DataUnused;
static constexpr Gpio::Signal Signal = Gpio::Signal::{{ name }};
static constexpr platform::Gpio::Signal Signal = platform::Gpio::Signal::{{ name }};
};
%% endfor
};
Expand Down

0 comments on commit 38120ec

Please sign in to comment.