2016-02-25 21:48:49 +01:00
|
|
|
/*
|
2018-04-24 18:59:12 +02:00
|
|
|
* Copyright (c) by BlackMark 2015-2018
|
2018-04-26 15:23:42 +02:00
|
|
|
* Date 26/04/2018
|
|
|
|
* Version 3.0
|
2016-02-25 21:48:49 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INOUT_H
|
|
|
|
#define INOUT_H
|
|
|
|
|
2018-04-24 18:59:12 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2016-02-25 21:48:49 +01:00
|
|
|
#include <stdint.h>
|
2018-04-24 18:59:12 +02:00
|
|
|
|
2016-02-25 21:48:49 +01:00
|
|
|
#include <avr/io.h>
|
|
|
|
|
2018-04-26 15:23:42 +02:00
|
|
|
/************************************************************************/
|
|
|
|
|
2018-04-24 18:59:12 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
namespace InOut
|
|
|
|
{
|
2016-02-25 21:48:49 +01:00
|
|
|
#define AVR_DIP40 defined (__AVR_ATmega32A__) || defined (__AVR_ATmega644P__) || defined (__AVR_ATmega1284P__)
|
2017-04-17 00:40:43 +02:00
|
|
|
#define AVR_DIP28 defined (__AVR_ATmega8__) || defined (__AVR_ATmega8A__) || defined (__AVR_ATmega168A__) || defined (__AVR_ATmega328P__)
|
2016-06-12 22:53:35 +02:00
|
|
|
#define AVR_DIP8 defined (__AVR_ATtiny13A__) || defined (__AVR_ATtiny85__)
|
2016-02-25 21:48:49 +01:00
|
|
|
|
|
|
|
#if AVR_DIP40
|
2018-04-26 15:23:42 +02:00
|
|
|
static constexpr volatile uint8_t *IO_PINA = &PINA;
|
|
|
|
static constexpr volatile uint8_t *IO_DDRA = &DDRA;
|
|
|
|
static constexpr volatile uint8_t *IO_PORTA = &PORTA;
|
2016-02-25 21:48:49 +01:00
|
|
|
#else
|
2018-04-26 15:23:42 +02:00
|
|
|
static constexpr volatile uint8_t *IO_PINA = nullptr;
|
|
|
|
static constexpr volatile uint8_t *IO_DDRA = nullptr;
|
|
|
|
static constexpr volatile uint8_t *IO_PORTA = nullptr;
|
2016-02-25 21:48:49 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if AVR_DIP40 || AVR_DIP28 || AVR_DIP8
|
2018-04-26 15:23:42 +02:00
|
|
|
static constexpr volatile uint8_t *IO_PINB = &PINB;
|
|
|
|
static constexpr volatile uint8_t *IO_DDRB = &DDRB;
|
|
|
|
static constexpr volatile uint8_t *IO_PORTB = &PORTB;
|
2016-02-25 21:48:49 +01:00
|
|
|
#else
|
2018-04-26 15:23:42 +02:00
|
|
|
static constexpr volatile uint8_t *IO_PINB = nullptr;
|
|
|
|
static constexpr volatile uint8_t *IO_DDRB = nullptr;
|
|
|
|
static constexpr volatile uint8_t *IO_PORTB = nullptr;
|
2016-02-25 21:48:49 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if AVR_DIP40 || AVR_DIP28
|
2018-04-26 15:23:42 +02:00
|
|
|
static constexpr volatile uint8_t *IO_PINC = &PINC;
|
|
|
|
static constexpr volatile uint8_t *IO_DDRC = &DDRC;
|
|
|
|
static constexpr volatile uint8_t *IO_PORTC = &PORTC;
|
2016-02-25 21:48:49 +01:00
|
|
|
#else
|
2018-04-26 15:23:42 +02:00
|
|
|
static constexpr volatile uint8_t *IO_PINC = nullptr;
|
|
|
|
static constexpr volatile uint8_t *IO_DDRC = nullptr;
|
|
|
|
static constexpr volatile uint8_t *IO_PORTC = nullptr;
|
2016-02-25 21:48:49 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if AVR_DIP40 || AVR_DIP28
|
2018-04-26 15:23:42 +02:00
|
|
|
static constexpr volatile uint8_t *IO_PIND = &PIND;
|
|
|
|
static constexpr volatile uint8_t *IO_DDRD = &DDRD;
|
|
|
|
static constexpr volatile uint8_t *IO_PORTD = &PORTD;
|
2016-02-25 21:48:49 +01:00
|
|
|
#else
|
2018-04-26 15:23:42 +02:00
|
|
|
static constexpr volatile uint8_t *IO_PIND = nullptr;
|
|
|
|
static constexpr volatile uint8_t *IO_DDRD = nullptr;
|
|
|
|
static constexpr volatile uint8_t *IO_PORTD = nullptr;
|
2016-02-25 21:48:49 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
enum class Pin
|
|
|
|
{
|
|
|
|
#if AVR_DIP40
|
2018-04-24 18:59:12 +02:00
|
|
|
A0 = 0x00,
|
|
|
|
A1 = 0x01,
|
|
|
|
A2 = 0x02,
|
|
|
|
A3 = 0x03,
|
|
|
|
A4 = 0x04,
|
|
|
|
A5 = 0x05,
|
|
|
|
A6 = 0x06,
|
|
|
|
A7 = 0x07,
|
2016-02-25 21:48:49 +01:00
|
|
|
#endif
|
|
|
|
#if AVR_DIP40 || AVR_DIP28 || AVR_DIP8
|
2018-04-24 18:59:12 +02:00
|
|
|
B0 = 0x10,
|
|
|
|
B1 = 0x11,
|
|
|
|
B2 = 0x12,
|
|
|
|
B3 = 0x13,
|
|
|
|
B4 = 0x14,
|
|
|
|
B5 = 0x15,
|
|
|
|
#endif
|
|
|
|
#if AVR_DIP40 || AVR_DIP28
|
|
|
|
B6 = 0x16,
|
|
|
|
B7 = 0x17,
|
|
|
|
C0 = 0x20,
|
|
|
|
C1 = 0x21,
|
|
|
|
C2 = 0x22,
|
|
|
|
C3 = 0x23,
|
|
|
|
C4 = 0x24,
|
|
|
|
C5 = 0x25,
|
|
|
|
C6 = 0x26,
|
|
|
|
#endif
|
|
|
|
#if AVR_DIP40
|
|
|
|
C7 = 0x27,
|
2016-02-25 21:48:49 +01:00
|
|
|
#endif
|
|
|
|
#if AVR_DIP40 || AVR_DIP28
|
2018-04-24 18:59:12 +02:00
|
|
|
D0 = 0x30,
|
|
|
|
D1 = 0x31,
|
|
|
|
D2 = 0x32,
|
|
|
|
D3 = 0x33,
|
|
|
|
D4 = 0x34,
|
|
|
|
D5 = 0x35,
|
|
|
|
D6 = 0x36,
|
|
|
|
D7 = 0x37,
|
2016-02-25 21:48:49 +01:00
|
|
|
#endif
|
2018-04-24 18:59:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class Port
|
|
|
|
{
|
2016-02-25 21:48:49 +01:00
|
|
|
#if AVR_DIP40
|
2018-04-24 18:59:12 +02:00
|
|
|
A = Pin::A0,
|
|
|
|
#endif
|
|
|
|
#if AVR_DIP40 || AVR_DIP28 || AVR_DIP8
|
|
|
|
B = Pin::B0,
|
2016-02-25 21:48:49 +01:00
|
|
|
#endif
|
|
|
|
#if AVR_DIP40 || AVR_DIP28
|
2018-04-24 18:59:12 +02:00
|
|
|
C = Pin::C0,
|
|
|
|
D = Pin::D0,
|
2016-02-25 21:48:49 +01:00
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class Dir
|
|
|
|
{
|
2018-04-24 18:59:12 +02:00
|
|
|
IN,
|
|
|
|
OUT
|
2016-02-25 21:48:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class Type
|
|
|
|
{
|
2018-04-24 18:59:12 +02:00
|
|
|
DDR,
|
2018-04-26 15:23:42 +02:00
|
|
|
PIN,
|
2018-04-24 18:59:12 +02:00
|
|
|
PORT
|
2016-02-25 21:48:49 +01:00
|
|
|
};
|
2016-05-24 19:41:59 +02:00
|
|
|
|
2018-04-26 15:23:42 +02:00
|
|
|
constexpr volatile uint8_t* getPort( Pin enmPin, Type enmType )
|
2016-02-25 21:48:49 +01:00
|
|
|
{
|
2018-04-26 15:23:42 +02:00
|
|
|
volatile uint8_t *vpui8Port = nullptr;
|
|
|
|
uint8_t ui8Port = static_cast<uint16_t>( enmPin ) >> 4 & 0x0F;
|
2016-05-24 19:41:59 +02:00
|
|
|
|
2018-04-26 15:23:42 +02:00
|
|
|
switch( ui8Port )
|
2016-02-25 21:48:49 +01:00
|
|
|
{
|
2018-04-26 15:23:42 +02:00
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
if( enmType == Type::DDR )
|
|
|
|
vpui8Port = IO_DDRA;
|
|
|
|
else if( enmType == Type::PIN )
|
|
|
|
vpui8Port = IO_PINA;
|
|
|
|
else if( enmType == Type::PORT )
|
|
|
|
vpui8Port = IO_PORTA;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
if( enmType == Type::DDR )
|
|
|
|
vpui8Port = IO_DDRB;
|
|
|
|
else if( enmType == Type::PIN )
|
|
|
|
vpui8Port = IO_PINB;
|
|
|
|
else if( enmType == Type::PORT )
|
|
|
|
vpui8Port = IO_PORTB;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
{
|
|
|
|
if( enmType == Type::DDR )
|
|
|
|
vpui8Port = IO_DDRC;
|
|
|
|
else if( enmType == Type::PIN )
|
|
|
|
vpui8Port = IO_PINC;
|
|
|
|
else if( enmType == Type::PORT )
|
|
|
|
vpui8Port = IO_PORTC;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
{
|
|
|
|
if( enmType == Type::DDR )
|
|
|
|
vpui8Port = IO_DDRD;
|
|
|
|
else if( enmType == Type::PIN )
|
|
|
|
vpui8Port = IO_PIND;
|
|
|
|
else if( enmType == Type::PORT )
|
|
|
|
vpui8Port = IO_PORTD;
|
|
|
|
break;
|
|
|
|
}
|
2016-02-25 21:48:49 +01:00
|
|
|
}
|
2018-04-24 18:59:12 +02:00
|
|
|
|
2018-04-26 15:23:42 +02:00
|
|
|
return vpui8Port;
|
2016-02-25 21:48:49 +01:00
|
|
|
}
|
2016-05-24 19:41:59 +02:00
|
|
|
|
2018-04-26 15:23:42 +02:00
|
|
|
constexpr uint8_t getPin( Pin enmPin )
|
|
|
|
{
|
|
|
|
return static_cast<uint16_t>( enmPin ) & 0x0F;
|
|
|
|
}
|
2018-04-24 18:59:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
template<InOut::Pin enmPin>
|
2016-02-25 21:48:49 +01:00
|
|
|
class InOutPin
|
|
|
|
{
|
|
|
|
public:
|
2018-04-26 15:58:15 +02:00
|
|
|
static inline void direction( InOut::Dir enmDir ) __attribute__( (always_inline) );
|
|
|
|
static inline void pullup( bool bPullup ) __attribute__( (always_inline) );
|
2016-05-24 19:41:59 +02:00
|
|
|
|
2018-04-26 15:23:42 +02:00
|
|
|
static inline bool read() __attribute__( (always_inline) );
|
|
|
|
static inline void write( bool bValue ) __attribute__( (always_inline) );
|
2018-04-24 18:59:12 +02:00
|
|
|
};
|
2016-05-24 19:41:59 +02:00
|
|
|
|
2018-04-24 18:59:12 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
template<InOut::Pin enmPin>
|
2018-04-26 15:58:15 +02:00
|
|
|
inline void InOutPin<enmPin>::direction( InOut::Dir enmDir )
|
2018-04-24 18:59:12 +02:00
|
|
|
{
|
2018-04-26 15:23:42 +02:00
|
|
|
constexpr volatile uint8_t *vpui8DDR = InOut::getPort( enmPin, InOut::Type::DDR );
|
|
|
|
constexpr uint8_t ui8Pin = InOut::getPin( enmPin );
|
2016-05-24 19:41:59 +02:00
|
|
|
|
2018-04-26 15:23:42 +02:00
|
|
|
if( enmDir == InOut::Dir::OUT )
|
|
|
|
*vpui8DDR |= ( 1 << ui8Pin );
|
|
|
|
else
|
|
|
|
*vpui8DDR &= ~( 1 << ui8Pin );
|
2018-04-24 18:59:12 +02:00
|
|
|
}
|
2016-05-24 19:41:59 +02:00
|
|
|
|
2018-04-24 18:59:12 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
template<InOut::Pin enmPin>
|
2018-04-26 15:58:15 +02:00
|
|
|
inline void InOutPin<enmPin>::pullup( bool bPullup )
|
2018-04-24 18:59:12 +02:00
|
|
|
{
|
2018-04-26 15:23:42 +02:00
|
|
|
write( bPullup );
|
2018-04-24 18:59:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
template<InOut::Pin enmPin>
|
|
|
|
inline bool InOutPin<enmPin>::read()
|
2018-04-24 18:59:12 +02:00
|
|
|
{
|
2018-04-26 15:23:42 +02:00
|
|
|
constexpr volatile uint8_t *vpui8PIN = InOut::getPort( enmPin, InOut::Type::PIN );
|
|
|
|
constexpr uint8_t ui8Pin = InOut::getPin( enmPin );
|
|
|
|
|
|
|
|
if( *vpui8PIN >> ui8Pin & 1 )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
2018-04-24 18:59:12 +02:00
|
|
|
}
|
2016-02-25 21:48:49 +01:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
template<InOut::Pin enmPin>
|
|
|
|
inline void InOutPin<enmPin>::write( bool bValue )
|
2018-04-24 18:59:12 +02:00
|
|
|
{
|
2018-04-26 15:23:42 +02:00
|
|
|
constexpr volatile uint8_t *vpui8PORT = InOut::getPort( enmPin, InOut::Type::PORT );
|
|
|
|
constexpr uint8_t ui8Pin = InOut::getPin( enmPin );
|
|
|
|
|
|
|
|
if( bValue )
|
|
|
|
*vpui8PORT |= ( 1 << ui8Pin );
|
|
|
|
else
|
|
|
|
*vpui8PORT &= ~( 1 << ui8Pin );
|
2018-04-24 18:59:12 +02:00
|
|
|
}
|
2016-02-25 21:48:49 +01:00
|
|
|
|
2018-04-24 18:59:12 +02:00
|
|
|
/************************************************************************/
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
template<InOut::Port enmPort>
|
2016-02-25 21:48:49 +01:00
|
|
|
class InOutPort
|
|
|
|
{
|
|
|
|
public:
|
2018-04-26 15:58:15 +02:00
|
|
|
static inline void direction( InOut::Dir enmDir ) __attribute__( (always_inline) );
|
|
|
|
static inline void pullup( bool bPullup ) __attribute__( (always_inline) );
|
2016-05-24 19:41:59 +02:00
|
|
|
|
2018-04-26 15:23:42 +02:00
|
|
|
static inline uint8_t read() __attribute__( (always_inline) );
|
|
|
|
static inline void write( uint8_t ui8Value ) __attribute__( (always_inline) );
|
2018-04-24 18:59:12 +02:00
|
|
|
};
|
2016-05-24 19:41:59 +02:00
|
|
|
|
2018-04-24 18:59:12 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
template<InOut::Port enmPort>
|
2018-04-26 15:58:15 +02:00
|
|
|
inline void InOutPort<enmPort>::direction( InOut::Dir enmDir )
|
2018-04-24 18:59:12 +02:00
|
|
|
{
|
2018-04-26 15:23:42 +02:00
|
|
|
constexpr volatile uint8_t *vpui8DDR = InOut::getPort( static_cast<InOut::Pin>( enmPort ), InOut::Type::DDR );
|
|
|
|
*vpui8DDR = ( enmDir == InOut::Dir::OUT ) ? 0xFF : 0x00;
|
2018-04-24 18:59:12 +02:00
|
|
|
}
|
2016-05-24 19:41:59 +02:00
|
|
|
|
2018-04-24 18:59:12 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
template<InOut::Port enmPort>
|
2018-04-26 15:58:15 +02:00
|
|
|
inline void InOutPort<enmPort>::pullup( bool bPullup )
|
2018-04-24 18:59:12 +02:00
|
|
|
{
|
2018-04-26 15:23:42 +02:00
|
|
|
write( bPullup ? 0xFF : 0x00 );
|
2018-04-24 18:59:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
template<InOut::Port enmPort>
|
|
|
|
inline uint8_t InOutPort<enmPort>::read()
|
2018-04-24 18:59:12 +02:00
|
|
|
{
|
2018-04-26 15:23:42 +02:00
|
|
|
constexpr volatile uint8_t *vpui8PIN = InOut::getPort( static_cast<InOut::Pin>( enmPort ), InOut::Type::PIN );
|
|
|
|
return *vpui8PIN;
|
2018-04-24 18:59:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2018-04-26 15:23:42 +02:00
|
|
|
template<InOut::Port enmPort>
|
|
|
|
inline void InOutPort<enmPort>::write( uint8_t ui8Value )
|
2018-04-24 18:59:12 +02:00
|
|
|
{
|
2018-04-26 15:23:42 +02:00
|
|
|
constexpr volatile uint8_t *vpui8PORT = InOut::getPort( static_cast<InOut::Pin>( enmPort ), InOut::Type::PORT );
|
|
|
|
*vpui8PORT = ui8Value;
|
2018-04-24 18:59:12 +02:00
|
|
|
}
|
2016-02-25 21:48:49 +01:00
|
|
|
|
2016-05-24 20:11:24 +02:00
|
|
|
#endif
|