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