Skip to content

Commit

Permalink
board/avr: add __throw_length_error stub implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
paradajz committed Nov 21, 2021
1 parent a3a520d commit 578bcde
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/board/arch/avr/common/Init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ namespace std
while (1)
;
}

void __throw_length_error(char const* arg)
{
Board::detail::errorHandler();

while (1)
;
}
} // namespace std

namespace Board
Expand Down

0 comments on commit 578bcde

Please sign in to comment.