Remove autogenerated files from .gitignore file
Keep them in version control from now on.
This commit is contained in:
parent
db36e8b0b7
commit
0311381490
2
src/.gitignore
vendored
2
src/.gitignore
vendored
@ -1,2 +0,0 @@
|
||||
# Generated automatically.
|
||||
config.rs
|
2
src/config.rs
Normal file
2
src/config.rs
Normal file
@ -0,0 +1,2 @@
|
||||
/// The clock frequency of device being targeted in Hertz.
|
||||
pub const CPU_FREQUENCY_HZ: u32 = 16000000;
|
1
src/cores/.gitignore
vendored
1
src/cores/.gitignore
vendored
@ -1 +0,0 @@
|
||||
*.rs
|
2019
src/cores/atmega328.rs
Normal file
2019
src/cores/atmega328.rs
Normal file
File diff suppressed because it is too large
Load Diff
6
src/cores/mod.rs
Normal file
6
src/cores/mod.rs
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
/// The ATmega328.
|
||||
pub mod atmega328;
|
||||
#[cfg(avr_mcu_atmega328)]
|
||||
pub use self::atmega328 as current;
|
||||
|
Loading…
Reference in New Issue
Block a user