Это видео недоступно.
Сожалеем об этом.

embassy is now on crates.io

Поделиться
HTML-код
  • Опубликовано: 22 янв 2024
  • Embassy is now on crates.io
    embassy.dev/bl...

Комментарии • 16

  • @jagagemo8141
    @jagagemo8141 6 месяцев назад +7

    I sure would like a video tutorial series using this 😅

  • @ragectl
    @ragectl 6 месяцев назад +2

    I hope we get to see many more new Rust embedded content videos in 2024 👍

  • @Perspectologist
    @Perspectologist 6 месяцев назад

    I’m looking forward to more embedded Rust content. I did a tiny bit of experimentation with it last year until PC tools and web servers became a more pressing need. I want to get back into embedded.

  • @TobiasFrei
    @TobiasFrei 5 месяцев назад

    Oh, there's even esp-rs in this ecosystem 🥰

  • @ywenp
    @ywenp 6 месяцев назад +2

    Great! :) Any plans on supporting the Teensy down the line?

    • @chrisbiscardi
      @chrisbiscardi  6 месяцев назад +2

      I haven't seen any plans for teensy. There's some work being done in the AVR area github.com/embassy-rs/embassy/pull/2273
      This is the only teensy crate I'm aware of atm: github.com/mciantyre/teensy4-rs

  • @fnux8890
    @fnux8890 5 месяцев назад

    Does anyone know of a great guide for getting embassy running with an esp32?

  • @romanstingler435
    @romanstingler435 6 месяцев назад +1

    great

  • @eatenpancreas
    @eatenpancreas 6 месяцев назад +1

    This is so cool, how does one start with embedded devices

    • @chrisbiscardi
      @chrisbiscardi  6 месяцев назад +1

      I don't have a good answer for this. I'm just reading a lot and trying some things. Getting Rust onto a board and running isn't too bad, there's quite a few places to get that (microbit, embassy, etc), but building real actionable projects is definitely a whole different step.
      I started with the microbit: ruclips.net/video/b7zWIKZp4ls/видео.html
      and then I did some pico w work: ruclips.net/video/vwFWBP0IuRU/видео.html
      and now I have a little set of electronics and whatnot that I'm working through.

  • @rugmj
    @rugmj 6 месяцев назад +1

    esp32 support would be great

    • @adinackerman5481
      @adinackerman5481 6 месяцев назад +2

      esp32 is fully supported!

    • @TheSast
      @TheSast 6 месяцев назад +3

      it is already!

    • @chrisbiscardi
      @chrisbiscardi  6 месяцев назад +6

      The esp32 HALs are maintained by the esp-rs org on github and can be used with embassy (github.com/esp-rs). There's a couple of additional links to esp32 resources in the embassy readme on github as well.
      I didn't mention this in the video because the video is mostly about the crates *from the embassy repo* that are now published, but esp32 is supported!

  • @Phosphoros47
    @Phosphoros47 6 месяцев назад

    And then there is the crate `embassy` which is just a months old fork of the original embassy repository… but why?

    • @chrisbiscardi
      @chrisbiscardi  6 месяцев назад +2

      embassy reserved the names for the crate names they are using while development was progressing on GitHub so that they could publish when the crates were ready (being able to use Rust's stable release was one concern, for example). The core "embassy" crate is one of those. I don't know what the plans are for the embassy crate itself, but that's what's happening there.