Compare commits

2 Commits

Author SHA1 Message Date
1cb4a4cc76 style: added gitignore 2025-09-02 17:37:01 +03:00
03f987b246 feat: added avr port definitions 2025-09-02 17:34:01 +03:00
3 changed files with 16 additions and 2 deletions

2
.gitignore vendored
View File

@@ -1 +1 @@
.DS_Store
.DS_Store

14
include/avr_port.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#ifdef __cplusplus
extern "C"
{
#endif
#define AVR_PORTB 0x01
#define AVR_PORTC 0x02
#define AVR_PORTD 0x03
#ifdef __cplusplus
}
#endif

View File

@@ -1 +1 @@
1.0.0
1.1.0