https://github.com/kizzycode/picosdk-malloc-rust-rp2040
A heap-allocated container that uses the Pico-SDK's malloc/free
https://github.com/kizzycode/picosdk-malloc-rust-rp2040
Last synced: about 2 months ago
JSON representation
A heap-allocated container that uses the Pico-SDK's malloc/free
- Host: GitHub
- URL: https://github.com/kizzycode/picosdk-malloc-rust-rp2040
- Owner: KizzyCode
- Created: 2022-10-31T23:11:16.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-31T23:19:34.000Z (over 2 years ago)
- Last Synced: 2025-02-06T04:44:19.380Z (3 months ago)
- Language: Rust
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE BSD 2-CLAUSE.md
Awesome Lists containing this project
README
[](https://opensource.org/licenses/BSD-2-Clause)
[](https://opensource.org/licenses/MIT)# `picosdk-malloc`
This crate provides a heap-allocated container that uses the Pico-SDK's `malloc`/`free` for memory management.
This is useful if:
- you link against the Pico SDK
- you don't want to use `nightly`
- you have large objects that cannot fit into the stack (the default stack size is rather small)