Volodymyr Shymanskyy

Results 82 issues of Volodymyr Shymanskyy

For example, in following scenario (Nordic UART Service implementation): ```cpp #include BLEService NUS ("713D0000-503E-4C75-BA94-3148F18D941E"); BLECharacteristic rxChar ("713D0003-503E-4C75-BA94-3148F18D941E", BLEWrite | BLEWriteWithoutResponse, BLE_MAX_ATTR_DATA_LEN); BLECharacteristic txChar ("713D0002-503E-4C75-BA94-3148F18D941E", BLERead | BLENotify, BLE_MAX_ATTR_DATA_LEN); void setup()...

Under Review

On the SDK structure diagram, I can see `libuv`. However, searching through the SDK it gives zero result. ![img](https://github.com/bouffalolab/bouffalo_sdk/blob/master/BouffaloSDK.png?raw=true)

Currently, the WASM page size is fixed at 64KiB, which is rather expensive [in some scenarios](https://github.com/wasm3/embedded-wasm-apps). WebAssembly WG proposed a new feature to handle it nicely: https://github.com/WebAssembly/custom-page-sizes/blob/main/proposals/custom-page-sizes/Overview.md This would allow...

enhancement
wasm

### Feature suggestion Currently, the WASM page size is fixed at 64KiB, which is rather expensive [in some scenarios](https://github.com/wasm3/embedded-wasm-apps). WebAssembly WG proposed a new feature to handle it nicely: https://github.com/WebAssembly/custom-page-sizes/blob/main/proposals/custom-page-sizes/Overview.md...

enhancement

Currently, the WASM page size is fixed at 64KiB, which is rather expensive [in some scenarios](https://github.com/wasm3/embedded-wasm-apps). WebAssembly WG proposed a new feature to handle it nicely: https://github.com/WebAssembly/custom-page-sizes/blob/main/proposals/custom-page-sizes/Overview.md It should be...

### Port, board and/or hardware RPI PICO W ### MicroPython version MicroPython v1.24.0-preview.224.g6c3dc0c0b on 2024-08-22; Raspberry Pi Pico W with RP2040 ### Reproduction ```py import socket import network import asyncio...

bug
port-rp2

This ticket is to document work in progress: - [x] support multiple builtin mip indexes - [x] implement (experimental) support for installing native modules, i.e. [`emlearn`](https://github.com/emlearn/emlearn-micropython) - [x] "Install package...

feature

Once #41 is ready, it should be rather easy to implement project import: - [x] Define a simple `project.json` structure. This can be inspired/adapted from mip, node.js, PlatformIO etc. -...

feature

- [x] Ensure that editor modifications are not lost when navigating or reconnecting the board - TBD: Warn about unsaved changes? - [ ] Save a backup of changes in...

enhancement

Currently, [some pre-built version](https://github.com/code4fukui/mpy-cross-v6) for `mpy-cross` is used. But it's somewhat outdated and leads to issues. 1. Newer language features are unsupported ![image](https://github.com/user-attachments/assets/eeb27b66-1013-47e3-b9a3-ef3f19642499) 2. Newer architectures (i.e. `rv32imc`) are unsupported...