Skip to content

Commit

Permalink
Merge branch 'main' into cram-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
bunnie authored Feb 23, 2025
2 parents 558c61a + 8c89189 commit 0d5a4e8
Show file tree
Hide file tree
Showing 118 changed files with 1,943 additions and 3,540 deletions.
44 changes: 27 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/app-loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ log-server = { package = "xous-api-log", version = "0.1.63" }
log = "0.4.14"
xous-names = { package = "xous-api-names", version = "0.9.65" }
gam = { path = "../../services/gam" }
graphics-server = { path = "../../services/graphics-server" }
ux-api = { path = "../../libs/ux-api" }
modals = { path = "../../services/modals" }
ticktimer-server = { package = "xous-api-ticktimer", version = "0.9.63" }
locales = { path = "../../locales" }
Expand Down
1 change: 0 additions & 1 deletion apps/chat-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ log-server = { package = "xous-api-log", version = "0.1.63" }
ticktimer-server = { package = "xous-api-ticktimer", version = "0.9.63" }
xous-names = { package = "xous-api-names", version = "0.9.65" }
gam = { path = "../../services/gam" }
graphics-server = { path = "../../services/graphics-server" }
trng = { path = "../../services/trng" }
locales = { path = "../../locales" }
ime-plugin-api = { path = "../../services/ime-plugin-api" }
Expand Down
3 changes: 2 additions & 1 deletion apps/hello/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ xous-ipc = "0.10.4"
log-server = { package = "xous-api-log", version = "0.1.63" }
xous-names = { package = "xous-api-names", version = "0.9.65" }
gam = { path = "../../services/gam" }
graphics-server = { path = "../../services/graphics-server" }
ux-api = { path = "../../libs/ux-api" }
blitstr2 = { path = "../../libs/blitstr2" }
locales = { path = "../../locales" }
tts-frontend = { path = "../../services/tts" }

Expand Down
5 changes: 3 additions & 2 deletions apps/hello/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@

use core::fmt::Write;

use graphics_server::api::GlyphStyle;
use graphics_server::{DrawStyle, Gid, PixelColor, Point, Rectangle, TextBounds, TextView};
use blitstr2::GlyphStyle;
use locales::t;
use num_traits::*;
#[cfg(feature = "tts")]
use tts_frontend::*;
use ux_api::minigfx::*;
use ux_api::service::api::Gid;

/// Basic 'Hello World!' application that draws a simple
/// TextView to the screen.
Expand Down
3 changes: 2 additions & 1 deletion apps/hidv2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ xous-ipc = "0.10.4"
log-server = { package = "xous-api-log", version = "0.1.63" }
xous-names = { package = "xous-api-names", version = "0.9.65" }
gam = { path = "../../services/gam" }
graphics-server = { path = "../../services/graphics-server" }
ux-api = { path = "../../libs/ux-api" }
blitstr2 = { path = "../../libs/blitstr2" }
locales = { path = "../../locales" }
tts-frontend = { path = "../../services/tts" }
usb-device-xous = { path = "../../services/usb-device-xous" }
Expand Down
5 changes: 3 additions & 2 deletions apps/hidv2/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
use core::fmt::Write;
use std::sync::mpsc::{self, Receiver, Sender};

use graphics_server::api::GlyphStyle;
use graphics_server::{DrawStyle, Gid, PixelColor, Point, Rectangle, TextBounds, TextView};
use blitstr2::GlyphStyle;
use num_traits::*;
use usb_device_xous::UsbHid;
use ux_api::minigfx::*;
use ux_api::service::api::*;

pub(crate) const SERVER_NAME_HIDV2: &str = "_HIDv2_";

Expand Down
3 changes: 2 additions & 1 deletion apps/mtxchat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ log-server = { package = "xous-api-log", version = "0.1.63" }
ticktimer-server = { package = "xous-api-ticktimer", version = "0.9.63" }
xous-names = { package = "xous-api-names", version = "0.9.65" }
gam = { path = "../../services/gam" }
graphics-server = { path = "../../services/graphics-server" }
ux-api = { path = "../../libs/ux-api" }
blitstr2 = { path = "../../libs/blitstr2" }
trng = { path = "../../services/trng" }
locales = { path = "../../locales" }
ime-plugin-api = { path = "../../services/ime-plugin-api" }
Expand Down
Loading

0 comments on commit 0d5a4e8

Please sign in to comment.