Skip to content

Commit

Permalink
Rename RTFM to RTIC
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn committed Jun 29, 2020
1 parent 489685c commit 16166b3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ aligned = "0.3.1"
heapless = "0.5.0"
panic-halt = "0.2.0"
panic-semihosting = "0.5.1"
cortex-m-rtfm = "0.5.1"
cortex-m-rtic = "0.5.3"
usb-device = "0.2.3"
usbd-serial = "0.1.0"

Expand Down Expand Up @@ -303,7 +303,7 @@ name = "button_irq"
required-features = ["rt"]

[[example]]
name = "button_irq_rtfm"
name = "button_irq_rtic"
required-features = ["rt"]

[[example]]
Expand Down Expand Up @@ -343,7 +343,7 @@ name = "timer"
required-features = ["rt"]

[[example]]
name = "timer_interrupt_rtfm"
name = "timer_interrupt_rtic"
required-features = ["rt"]

[[example]]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

extern crate panic_halt;

use rtfm::app;
use rtic::app;
use stm32l0xx_hal::{
exti::{Exti, ExtiLine, GpioLine, TriggerEdge},
gpio::*,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

extern crate panic_halt;

use rtfm::app;
use rtic::app;
use stm32l0xx_hal::{gpio::*, pac, prelude::*, rcc::Config, timer::Timer};

#[app(device = stm32l0xx_hal::pac, peripherals = true)]
Expand Down

0 comments on commit 16166b3

Please sign in to comment.