Remove autogenerated files from .gitignore file

Keep them in version control from now on.
This commit is contained in:
Dylan McKay 2021-01-28 04:39:39 +13:00
parent db36e8b0b7
commit 0311381490
5 changed files with 2027 additions and 3 deletions

2
src/.gitignore vendored
View File

@ -1,2 +0,0 @@
# Generated automatically.
config.rs

2
src/config.rs Normal file
View File

@ -0,0 +1,2 @@
/// The clock frequency of device being targeted in Hertz.
pub const CPU_FREQUENCY_HZ: u32 = 16000000;

View File

@ -1 +0,0 @@
*.rs

2019
src/cores/atmega328.rs Normal file

File diff suppressed because it is too large Load Diff

6
src/cores/mod.rs Normal file
View File

@ -0,0 +1,6 @@
/// The ATmega328.
pub mod atmega328;
#[cfg(avr_mcu_atmega328)]
pub use self::atmega328 as current;