Coder Social home page Coder Social logo

Comments (6)

Song-aff avatar Song-aff commented on August 23, 2024

esp-rs/esp-hal#1434 (comment)
I also raised this question in ESP-HAL

from slint.

ogoffart avatar ogoffart commented on August 23, 2024

Looks like we shouldn't unconditionally require critical-section in

portable-atomic = { version = "1", features = ["critical-section"] }
and maybe also in once_cell, but we then need to enable it in some case. I wonder what's best here.

from slint.

KortanZ avatar KortanZ commented on August 23, 2024

Any plan to fix this? It's really annoying that need to patch esp-hal as a workaround in order to use slint. Really thankful if this could be fixed 🙂.

from slint.

ogoffart avatar ogoffart commented on August 23, 2024

Not sure how to fix this.
We can't just remove the features = ["critical-section"] from our Cargo.toml, otherwise things will stop compiling.
Even if we add unsafe-single-threaded = ["portable-atomic/unsafe-assume-single-core"] in our own Cargo.toml this won't work on stm32

from slint.

KortanZ avatar KortanZ commented on August 23, 2024

@ogoffart what if we follow the portable-atomic crate recommendation? Leave the end user to determine which feature to use, features = ["critical-section"] or features = ["unsafe-assume-single-core"]. We remove features = ["critical-section"], and add an slint feature let's say critical-section, and bind portable-atomic/critical-section. Full change may like:

unsafe-single-threaded = ["portable-atomic/unsafe-assume-single-core"]
critical-section = ["portable-atomic/critical-section"]

And user could choose one of them to use.

Update:
There may some HAL use critical-seciton in protable-atomic, but user may still need use unsafe-single-threaded in slint. So we may need change like:

unsafe-single-threaded = []
portable-atomic-single-core = ["portable-atomic/unsafe-assume-single-core"]
portable-atomic-critical-section = ["portable-atomic/critical-section"]

A breaking and clumsy change, but I can't see any other solution. : (

from slint.

ogoffart avatar ogoffart commented on August 23, 2024

I guess you're right. We can make it non-breaking by using the compat-1-2 feature.

In api/rs/slint/Cargo.toml

unsafe-single-threaded = []
portable-atomic-single-core = ["portable-atomic/unsafe-assume-single-core"]
portable-atomic-critical-section = ["portable-atomic/critical-section"]
compat-1-2 = ["portable-atomic-critical-section", "compat-1-7"]
compat-1-7 = []

in internal/core/Cargo.toml

portable-atomic = { version = "1", features = ["require-cas"] }

But we also need to document that properly.

(This just makes it even more complicated to setup for MCU apps)

from slint.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.