4 Aug 2024 |
ahmed hadjeres | Funny thing is rust looks like EMAC JS for adult | 23:55:10 |
dirbaio | lol | 23:55:55 |
5 Aug 2024 |
ahmed hadjeres | I am hitting error[E0463]: can't find crate for core`` | 00:15:19 |
ahmed hadjeres | when In am trying to build any clue ?
| 00:15:31 |
Andrew Walbran | Did you install the appropriate target with rustup? | 00:16:52 |
ahmed hadjeres | do you mean the cross compiler ? thumbv7em-none-eabihf | 00:17:27 |
ahmed hadjeres | info: component 'rust-std' for target 'thumbv7em-none-eabihf' is up to date | 00:18:42 |
ahmed hadjeres | NVM got it | 00:21:55 |
ahmed hadjeres | if you install rust using brew it will not work | 00:22:13 |
9 Aug 2024 |
diondokter | Can I get someone to approve this? https://github.com/nrf-rs/nrfxlib-sys/pull/9 I missed something with the release I just did. James Munns dirbaio ?? 🙏 | 12:37:44 |
diondokter | ahmed hadjeres: Thanks! But it needs to be someone with write access to the repo :) | 12:41:07 |
ahmed hadjeres | Mostly version bump and inclusion of libmodem? | 12:41:09 |
diondokter | Yeah | 12:41:23 |
diondokter | Missed that in the last PR | 12:41:33 |
ahmed hadjeres | There is no upvote? | 12:41:34 |
diondokter | Upvote? | 12:41:47 |
ahmed hadjeres | Some of the project open-source I worked on need a minimum of people to review before it gets merged | 12:42:26 |
diondokter | Yeah, this is a minimum of 1 other person who has write access | 12:42:51 |
diondokter | Not just any person | 12:43:00 |
ahmed hadjeres | It’s like a one person can’t just approve it | 12:43:02 |
ahmed hadjeres | Kk sorry my bad then ;-) | 12:43:11 |
diondokter | Haha np, thanks for trying to help! | 12:43:24 |
| yuri joined the room. | 20:39:22 |
12 Aug 2024 |
| pinball_wizard joined the room. | 06:14:59 |
13 Aug 2024 |
ahmed hadjeres | Redacted or Malformed Event | 02:36:54 |
ahmed hadjeres | hey guys I have been bug down for a little while with a embassy-executor: task arena is full. You must increase the arena size, I tried to follow embassy doc
#[embassy_executor::task(pool_size = 4)] but no lock I have this error with my code and the test code too any advice would be welcome | 20:19:37 |
dirbaio | increase arena size in Cargo.toml | 20:20:15 |
ahmed hadjeres | Via environment variables at build time: set the variable named EMBASSY_EXECUTOR_TASK_ARENA_SIZE. For example EMBASSY_EXECUTOR_TASK_ARENA_SIZE=4321 cargo build. You can also set them in the [env] section of .cargo/config.toml. Any value can be set, unlike with Cargo features. | 20:20:33 |
dirbaio | https://github.com/embassy-rs/embassy/blob/main/examples/nrf52840/Cargo.toml#L10 | 20:20:43 |
ahmed hadjeres | i tried the EMBASSY_EXECUTOR_TASK_ARENA_SIZE but did not work | 20:20:49 |