Closed 0xkelvin closed 7 months ago
Not an expert, but I guess you might be missing a feature flag, see
Hey, not sure if this helps but you could also use the esp-hal crate for no_std then need to enable these features and should work:
features = [ "esp32c6", "embassy", "embassy-time-timg0", "embassy-executor-thread", "embassy-executor-interrupt" ]
I think you could also remove the esp32c6-hal crate since it's deprecated for esp-hal.
thanks, that's works
hello,
I am trying to do basic "hello world" with embassy on esp32c6, but i got error "could not find
executor
inembassy
"my cargo.toml :
and the main.rs :
great thanks for any comments