Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to SDK 34.3 (Firmware 0.87.0) #93

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Rust for Flipper Zero 🐬❤️🦀

[![crates.io](https://img.shields.io/crates/v/flipperzero)](https://crates.io/crates/flipperzero)
[![Flipper Zero API](https://img.shields.io/badge/Flipper%20Zero%20API-28.2-orange)](https://github.com/flipperdevices/flipperzero-firmware/blob/0.84.1/firmware/targets/f7/api_symbols.csv)
[![Flipper Zero API](https://img.shields.io/badge/Flipper%20Zero%20API-34.3-orange)](https://github.com/flipperdevices/flipperzero-firmware/blob/0.87.0/firmware/targets/f7/api_symbols.csv)
[![docs.rs](https://img.shields.io/docsrs/flipperzero)](https://docs.rs/flipperzero)
[![MIT license](https://img.shields.io/crates/l/flipperzero)](LICENSE)

Expand All @@ -17,7 +17,7 @@ This means it's not possible to use anything in the [`std`](https://doc.rust-lan

## SDK version

Currently supports SDK 28.2 ([[email protected]](https://github.com/flipperdevices/flipperzero-firmware/tree/0.84.1)).
Currently supports SDK 34.3 ([[email protected]](https://github.com/flipperdevices/flipperzero-firmware/tree/0.84.1)).

The crate major version number will be updated after a bump in [API version](https://github.com/flipperdevices/flipperzero-firmware/blob/release/firmware/targets/f7/api_symbols.csv) in the Flipper Zero firmware.

Expand Down
2 changes: 1 addition & 1 deletion crates/flipperzero/src/dolphin/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl Dolphin {
///
/// In future it will become part of assets. Thread safe, async.
pub fn deed(&mut self, deed: Deed) {
unsafe { sys::dolphin_deed(self.data.as_ptr(), deed.to_raw()) };
unsafe { sys::dolphin_deed(deed.to_raw()) };
}

/// Retrieves the dolphin's current stats.
Expand Down
Loading