Change interrupt handler technique to not rely on function pointer and instead use user-facing macros
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
#ifndef UART_HARDWARE_1_HPP
|
||||
#define UART_HARDWARE_1_HPP
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@@ -82,9 +81,6 @@ constexpr int operator<<(const int &lhs, const ControlFlagsB1 &rhs) { return lhs
|
||||
constexpr int operator<<(const int &lhs, const ControlFlagsC1 &rhs) { return lhs << static_cast<int>(rhs); }
|
||||
// clang-format on
|
||||
|
||||
extern void (*fnRx1IntHandler)();
|
||||
extern void (*fnDataReg1EmptyIntHandler)();
|
||||
|
||||
#define HAS_UART1
|
||||
|
||||
#endif
|
||||
@@ -102,65 +98,59 @@ template <class cfg, Mode mode>
|
||||
class Hardware1<cfg, Driven::INTERRUPT, mode>
|
||||
: public detail::InterruptHardware<detail::Registers1, detail::ControlFlagsA1, detail::ControlFlagsB1,
|
||||
detail::ControlFlagsC1, cfg, mode> {
|
||||
using detail::InterruptHardware<detail::Registers1, detail::ControlFlagsA1, detail::ControlFlagsB1,
|
||||
detail::ControlFlagsC1, cfg, mode>::rxIntHandler;
|
||||
|
||||
using detail::InterruptHardware<detail::Registers1, detail::ControlFlagsA1, detail::ControlFlagsB1,
|
||||
detail::ControlFlagsC1, cfg, mode>::dataRegEmptyIntHandler;
|
||||
|
||||
using HardwareImpl = detail::Hardware<detail::Registers1, detail::ControlFlagsA1, detail::ControlFlagsB1,
|
||||
detail::ControlFlagsC1, cfg, Driven::INTERRUPT, mode>;
|
||||
|
||||
public:
|
||||
static void init() FORCE_INLINE
|
||||
{
|
||||
detail::fnRx1IntHandler = rxIntHandler;
|
||||
detail::fnDataReg1EmptyIntHandler = dataRegEmptyIntHandler;
|
||||
|
||||
HardwareImpl::init();
|
||||
sei();
|
||||
}
|
||||
|
||||
private:
|
||||
using HardwareImpl = detail::Hardware<detail::Registers1, detail::ControlFlagsA1, detail::ControlFlagsB1,
|
||||
detail::ControlFlagsC1, cfg, Driven::INTERRUPT, mode>;
|
||||
|
||||
using InterruptHardwareImpl = detail::InterruptHardware<detail::Registers1, detail::ControlFlagsA1,
|
||||
detail::ControlFlagsB1, detail::ControlFlagsC1, cfg, mode>;
|
||||
|
||||
// Must be friends with Uart interface to call these private handlers
|
||||
template <class Driver>
|
||||
friend class Uart;
|
||||
|
||||
static void rxIntHandler() FORCE_INLINE
|
||||
{
|
||||
InterruptHardwareImpl::rxIntHandler();
|
||||
}
|
||||
|
||||
static void dataRegEmptyIntHandler() FORCE_INLINE
|
||||
{
|
||||
InterruptHardwareImpl::dataRegEmptyIntHandler();
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
} // namespace uart
|
||||
|
||||
#undef FORCE_INLINE
|
||||
|
||||
#endif
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifdef UART1_INT_VECTORS
|
||||
|
||||
#include <avr/interrupt.h>
|
||||
|
||||
namespace uart {
|
||||
namespace detail {
|
||||
|
||||
#if defined(__AVR_ATmega1284P__)
|
||||
|
||||
void (*fnRx1IntHandler)() = nullptr;
|
||||
void (*fnDataReg1EmptyIntHandler)() = nullptr;
|
||||
|
||||
ISR(USART1_RX_vect)
|
||||
{
|
||||
if (fnRx1IntHandler)
|
||||
fnRx1IntHandler();
|
||||
// Forward declare interrupt functions to allow adding them as friends
|
||||
extern "C" {
|
||||
void USART1_RX_vect() __attribute__((signal));
|
||||
void USART1_UDRE_vect() __attribute__((signal));
|
||||
}
|
||||
|
||||
ISR(USART1_UDRE_vect)
|
||||
{
|
||||
if (fnDataReg1EmptyIntHandler)
|
||||
fnDataReg1EmptyIntHandler();
|
||||
}
|
||||
// clang-format off
|
||||
#define REGISTER_UART1_INT_VECTORS(uart_type) \
|
||||
ISR(USART1_RX_vect) \
|
||||
{ \
|
||||
uart_type::rxIntHandler(); \
|
||||
} \
|
||||
ISR(USART1_UDRE_vect) \
|
||||
{ \
|
||||
uart_type::dataRegEmptyIntHandler(); \
|
||||
} \
|
||||
struct _##uart_type { \
|
||||
}
|
||||
// clang-format off
|
||||
|
||||
#endif
|
||||
|
||||
} // namespace detail
|
||||
} // namespace uart
|
||||
|
||||
#undef UART1_INT_VECTORS
|
||||
|
||||
#endif
|
||||
#undef FORCE_INLINE
|
||||
|
||||
Reference in New Issue
Block a user