Commit from GitHub Actions

This commit is contained in:
Lee Lup Yuen 2022-03-22 02:19:07 +00:00
parent 8a3c480888
commit eac2aee4b0
5 changed files with 35 additions and 13 deletions

View file

@ -569,7 +569,12 @@ CBOR Output: 11 bytes
</ol>
<p>But first well take a short detour to explore <a href="https://lupyuen.github.io/articles/nuttx#rust-on-nuttx"><strong>Rust on NuttX</strong></a></p>
<ul>
<li><a href="https://lupyuen.github.io/articles/rust2"><strong>“Rust on Apache NuttX OS”</strong></a></li>
<li>
<p><a href="https://lupyuen.github.io/articles/rust2"><strong>“Rust on Apache NuttX OS”</strong></a></p>
</li>
<li>
<p><a href="https://lupyuen.github.io/articles/rusti2c"><strong>“Rust talks I2C on Apache NuttX RTOS”</strong></a></p>
</li>
</ul>
<p>Stay Tuned!</p>
<p>Many Thanks to my <a href="https://github.com/sponsors/lupyuen"><strong>GitHub Sponsors</strong></a> for supporting my work! This article wouldnt have been possible without your support.</p>

View file

@ -1084,11 +1084,15 @@ PrepareTxFrame: status=0, maxSize=11, currentSize=11</code></pre></div>
</ul>
<p><em>Were porting plenty of code to NuttX: LoRa, LoRaWAN and NimBLE Porting Layer. Do we expect any problems?</em></p>
<p>Yep we might have issues keeping our LoRaWAN Stack in sync with Semtechs version. <a href="https://lupyuen.github.io/articles/lorawan3#notes">(But we shall minimise the changes)</a></p>
<p>Im still super curious about porting the <a href="https://lupyuen.github.io/articles/nuttx#rust-on-nuttx"><strong>Rust Embedded HAL</strong></a> to NuttX. We might start soon with GPIO and SPI to see whether the concept is feasible.</p>
<p>We have ported the <a href="https://lupyuen.github.io/articles/nuttx#rust-on-nuttx"><strong>Rust Embedded HAL</strong></a> to NuttX. Heres what weve done…</p>
<ul>
<li><a href="https://lupyuen.github.io/articles/rust2"><strong>“Rust on Apache NuttX OS”</strong></a></li>
<li>
<p><a href="https://lupyuen.github.io/articles/rust2"><strong>“Rust on Apache NuttX OS”</strong></a></p>
</li>
<li>
<p><a href="https://lupyuen.github.io/articles/rusti2c"><strong>“Rust talks I2C on Apache NuttX RTOS”</strong></a></p>
</li>
</ul>
<p>Stay Tuned!</p>
<p>Many Thanks to my <a href="https://github.com/sponsors/lupyuen"><strong>GitHub Sponsors</strong></a> for supporting my work! This article wouldnt have been possible without your support.</p>
<ul>
<li>

View file

@ -647,9 +647,14 @@ poke &amp;h40000188, &amp;h00</code></pre></div>
<p>This means that we build a layer of code that translates the Rust Embedded HAL Interface into the NuttX POSIX Interface.</p>
<p>And the Rust Embedded HAL for NuttX might be <strong>portable across all NuttX platforms</strong>. Thanks to POSIX Compatibility!</p>
<p>(Rust Embedded HAL might also become a friendlier API for NuttX)</p>
<p>UPDATE: Check out the article here</p>
<p>Heres how we ported Rust Embedded HAL to NuttX</p>
<ul>
<li><a href="https://lupyuen.github.io/articles/rust2"><strong>“Rust on Apache NuttX OS”</strong></a></li>
<li>
<p><a href="https://lupyuen.github.io/articles/rust2"><strong>“Rust on Apache NuttX OS”</strong></a></p>
</li>
<li>
<p><a href="https://lupyuen.github.io/articles/rusti2c"><strong>“Rust talks I2C on Apache NuttX RTOS”</strong></a></p>
</li>
</ul>
<p><a href="https://twitter.com/btashton/status/1463379162312306691">UPDATE: According to Brennan Ashton, Sony has worked on Rust for NuttX.</a></p>
<h1 id="whats-next" class="section-header"><a href="#whats-next">12 Whats Next</a></h1>

View file

@ -992,11 +992,15 @@ SX1262 Register 8 is 0x80</code></pre></div>
<ul>
<li><a href="https://lupyuen.github.io/articles/bme280"><strong>“Apache NuttX Driver for BME280 Sensor: Ported from Zephyr OS”</strong></a></li>
</ul>
<p>Im excited about porting the <a href="https://lupyuen.github.io/articles/nuttx#rust-on-nuttx"><strong>Rust Embedded HAL</strong></a> to NuttX. Heres how we integrated NuttX GPIO and SPI with Rust…</p>
<p>Im super excited about porting the <a href="https://lupyuen.github.io/articles/nuttx#rust-on-nuttx"><strong>Rust Embedded HAL</strong></a> to NuttX. Heres how we integrated NuttX GPIO, SPI and I2C with Rust…</p>
<ul>
<li><a href="https://lupyuen.github.io/articles/rust2"><strong>“Rust on Apache NuttX OS”</strong></a></li>
<li>
<p><a href="https://lupyuen.github.io/articles/rust2"><strong>“Rust on Apache NuttX OS”</strong></a></p>
</li>
<li>
<p><a href="https://lupyuen.github.io/articles/rusti2c"><strong>“Rust talks I2C on Apache NuttX RTOS”</strong></a></p>
</li>
</ul>
<p>Stay Tuned!</p>
<p>Many Thanks to my <a href="https://github.com/sponsors/lupyuen"><strong>GitHub Sponsors</strong></a> for supporting my work! This article wouldnt have been possible without your support.</p>
<ul>
<li>

View file

@ -1624,15 +1624,19 @@ static void handle_event_queue(void *arg) {
</ul>
<p><em>Were porting plenty of code to NuttX: LoRa, LoRaWAN and NimBLE Porting Layer. Do we expect any problems?</em></p>
<p>Yep we might have issues keeping our LoRaWAN Stack in sync with Semtechs version. <a href="https://lupyuen.github.io/articles/sx1262#notes">(But we shall minimise the changes)</a></p>
<p>Im still super curious about porting the <a href="https://lupyuen.github.io/articles/nuttx#rust-on-nuttx"><strong>Rust Embedded HAL</strong></a> to NuttX. We might start soon with GPIO and SPI to see whether the concept is feasible…</p>
<p>We have started porting the <a href="https://lupyuen.github.io/articles/nuttx#rust-on-nuttx"><strong>Rust Embedded HAL</strong></a> to NuttX. Heres what weve done…</p>
<ul>
<li><a href="https://lupyuen.github.io/articles/rust2"><strong>“Rust on Apache NuttX OS”</strong></a></li>
<li>
<p><a href="https://lupyuen.github.io/articles/rust2"><strong>“Rust on Apache NuttX OS”</strong></a></p>
</li>
<li>
<p><a href="https://lupyuen.github.io/articles/rusti2c"><strong>“Rust talks I2C on Apache NuttX RTOS”</strong></a></p>
</li>
</ul>
<p>LoRa works on Rust too…</p>
<p>Now LoRa works on Rust too…</p>
<ul>
<li><a href="https://lupyuen.github.io/articles/rust2#transmit-lora-message"><strong>“Transmit LoRa Message (in Rust)”</strong></a></li>
</ul>
<p>Stay Tuned!</p>
<p>Many Thanks to my <a href="https://github.com/sponsors/lupyuen"><strong>GitHub Sponsors</strong></a> for supporting my work! This article wouldnt have been possible without your support.</p>
<ul>
<li>