Skip to content

Commit

Permalink
refactor: Update project name to Teeny
Browse files Browse the repository at this point in the history
+ Migrate project name, folder, and references to `Teeny` from `Spotify Mini Controller`.
+ Update `README.md` badges and description to reflect the new project name.
  • Loading branch information
Sycrosity committed Jun 22, 2024
1 parent ef3b6a7 commit 7e32fd3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ rustflags = [

# # Required to obtain backtraces (e.g. when using the "esp-backtrace" crate.) on riscv32imc targets.
# # NOTE: May negatively impact performance of produced code
# "-C",
# "force-frame-pointers",
"-C",
"force-frame-pointers",
]

target = "riscv32imc-unknown-none-elf"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "spotify-mini"
name = "teeny"
version = "0.1.0"
authors = ["Sycrosity <[email protected]>"]
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
`Spotify Mini Controller`
`Teeny`
==================
![CI](https://github.com/Sycrosity/spotify-mini/actions/workflows/ci.yml/badge.svg)
![CI](https://github.com/Sycrosity/teeny/actions/workflows/ci.yml/badge.svg)

A teeny tiny Spotify Controller for esp32 devices.
A teeny tiny esp32c3 powered spotify controller.
-------

## Download & run
Expand All @@ -11,8 +11,8 @@ A teeny tiny Spotify Controller for esp32 devices.

1. Install rust at [rustup.rs](https://rustup.rs)
2. Install espup at [esp-rs/espup](https://github.com/esp-rs/espup)
3. Clone the repo `git clone https://github.com/Sycrosity/spotify-mini.git`
4. `cd spotify-mini`
3. Clone the repo `git clone https://github.com/Sycrosity/teeny.git`
4. `cd teeny`
5. Install `just` at [just.systems](https://just.systems/) (or with `cargo install just`)
6. Run with your selected board type, e.g. `just run esp32c3`

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async fn main(spawner: Spawner) -> ! {
// this requires a clean rebuild because of https://github.com/
// rust-lang/cargo/issues/10358
#[cfg(feature = "log")]
spotify_mini::logger::init_logger_from_env();
teeny::logger::init_logger_from_env();
info!("Logger is setup");
println!("Hello world!");

Expand Down
4 changes: 2 additions & 2 deletions wokwi.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[wokwi]
version = 1
gdbServerPort = 3333
elf = "target/riscv32imc-unknown-none-elf/release/spotify-mini"
firmware = "target/riscv32imc-unknown-none-elf/release/spotify-mini"
elf = "target/riscv32imc-unknown-none-elf/release/teeny"
firmware = "target/riscv32imc-unknown-none-elf/release/teeny"

0 comments on commit 7e32fd3

Please sign in to comment.