ibmpc_usb: Add support for AT90USB1286

This commit is contained in:
tmk 2019-12-04 14:54:20 +09:00
parent 37a452f7c9
commit 4b44e106b3
2 changed files with 5 additions and 1 deletions

View file

@ -0,0 +1,4 @@
MCU = at90usb1286
BOOTLOADER_SIZE = 8192
include Makefile

View file

@ -43,7 +43,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* /*
* Pin and interrupt configuration * Pin and interrupt configuration
*/ */
#if defined(__AVR_ATmega32U4__) || defined(__AVR_ATmega32U2__) #if defined(__AVR_ATmega32U4__) || defined(__AVR_ATmega32U2__) || defined(__AVR_AT90USB1286__)
/* uses INT1 for clock line */ /* uses INT1 for clock line */
#define IBMPC_CLOCK_PORT PORTD #define IBMPC_CLOCK_PORT PORTD
#define IBMPC_CLOCK_PIN PIND #define IBMPC_CLOCK_PIN PIND