* [9fans] Arduino programming on plan 9
@ 2025-01-01 13:47 sirjofri
2025-01-01 16:06 ` lego12239
` (3 more replies)
0 siblings, 4 replies; 16+ messages in thread
From: sirjofri @ 2025-01-01 13:47 UTC (permalink / raw)
To: 9fans
Hi everyone, happy new year,
Out of curiosity, I wanted to ask if someone has any experience with programming arduino boards on plan 9. The question is not only about writing code and compiling it (as that is probably possible), but especially for sending the binary over to the chip to make it work.
I don't know enough about what protocols are used for that, and how easy they are to implement, or maybe if we even have something like that already using xyz-modem or whatever.
Did anyone do experiments on that already, using plan 9?
sirjofri
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M756f46d4d2ed0de7ea73337f
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-01 13:47 [9fans] Arduino programming on plan 9 sirjofri
@ 2025-01-01 16:06 ` lego12239
2025-01-01 16:21 ` Charles Forsyth
2025-01-01 20:29 ` Skip Tavakkolian
` (2 subsequent siblings)
3 siblings, 1 reply; 16+ messages in thread
From: lego12239 @ 2025-01-01 16:06 UTC (permalink / raw)
To: 9fans
On Wed, Jan 01, 2025 at 02:47:06PM +0100, sirjofri wrote:
> Hi everyone, happy new year,
Hi.
> Out of curiosity, I wanted to ask if someone has any experience with programming arduino boards on plan 9. The question is not only about writing code and compiling it (as that is probably possible), but especially for sending the binary over to the chip to make it work.
I don't know, but is there an avr compiler for plan9?
> I don't know enough about what protocols are used for that, and how easy they are to implement, or maybe if we even have something like that already using xyz-modem or whatever.
>
> Did anyone do experiments on that already, using plan 9?
I didn't make such experiments, but think that may be avrdude (from linux) can be ported to plan9.
--
Олег Неманов (Oleg Nemanov)
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-Mb76da1a43e385306ceb0fd1b
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-01 16:06 ` lego12239
@ 2025-01-01 16:21 ` Charles Forsyth
0 siblings, 0 replies; 16+ messages in thread
From: Charles Forsyth @ 2025-01-01 16:21 UTC (permalink / raw)
To: 9fans
[-- Attachment #1: Type: text/plain, Size: 1284 bytes --]
there is, for a atmel mega128 or some such. za/zc/zl as part of davros, a
tiny os for a berkeley mote variant.
On Wed, 1 Jan 2025 at 16:17, <lego12239@yandex.ru> wrote:
> On Wed, Jan 01, 2025 at 02:47:06PM +0100, sirjofri wrote:
> > Hi everyone, happy new year,
>
> Hi.
>
> > Out of curiosity, I wanted to ask if someone has any experience with
> programming arduino boards on plan 9. The question is not only about
> writing code and compiling it (as that is probably possible), but
> especially for sending the binary over to the chip to make it work.
>
> I don't know, but is there an avr compiler for plan9?
>
> > I don't know enough about what protocols are used for that, and how easy
> they are to implement, or maybe if we even have something like that already
> using xyz-modem or whatever.
> >
> > Did anyone do experiments on that already, using plan 9?
>
> I didn't make such experiments, but think that may be avrdude (from
> linux) can be ported to plan9.
>
> --
> Олег Неманов (Oleg Nemanov)
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M43e1533f91dc841cef09b885
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
[-- Attachment #2: Type: text/html, Size: 2664 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-01 13:47 [9fans] Arduino programming on plan 9 sirjofri
2025-01-01 16:06 ` lego12239
@ 2025-01-01 20:29 ` Skip Tavakkolian
2025-01-01 23:21 ` Daniel Maslowski via 9fans
2025-01-02 18:37 ` Skip Tavakkolian
2025-01-02 20:22 ` Karin Willers
3 siblings, 1 reply; 16+ messages in thread
From: Skip Tavakkolian @ 2025-01-01 20:29 UTC (permalink / raw)
To: 9fans
Arduino boards now include arm32 and ESP32 (Xtensa) processors in
addition to atmel AVR. All of the differences are hidden by Arduino
IDE, which does a good job of plastering over things for these and
many other (not Arduino) boards, including RISC-V boards.
I would think that the most likely boards that could easily be
supported on Plan 9 would be the Pi Pico (arm) and Pico 2 (arm +
riscv) through 5c/ic modifications. Those boards show up as fat32
drives on USB and the binary can just be copied over (e.g. usbfat: &&
cp foo /n/sdUx.y). I think SAMD21 boards like XIAO would work very
similarly.
On Wed, Jan 1, 2025 at 7:48 AM sirjofri <sirjofri+ml-9fans@sirjofri.de> wrote:
>
> Hi everyone, happy new year,
>
> Out of curiosity, I wanted to ask if someone has any experience with programming arduino boards on plan 9. The question is not only about writing code and compiling it (as that is probably possible), but especially for sending the binary over to the chip to make it work.
>
> I don't know enough about what protocols are used for that, and how easy they are to implement, or maybe if we even have something like that already using xyz-modem or whatever.
>
> Did anyone do experiments on that already, using plan 9?
>
> sirjofri
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-Mb1c1283e29ba9aef29736f8a
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-01 20:29 ` Skip Tavakkolian
@ 2025-01-01 23:21 ` Daniel Maslowski via 9fans
2025-01-02 0:32 ` Skip Tavakkolian
0 siblings, 1 reply; 16+ messages in thread
From: Daniel Maslowski via 9fans @ 2025-01-01 23:21 UTC (permalink / raw)
To: 9fans
[-- Attachment #1: Type: text/plain, Size: 1836 bytes --]
The ESP MCUs can be easily flashed via serial.
The protocol is publicly documented:
https://docs.espressif.com/projects/esptool/en/latest/esp32s3/advanced-topics/serial-protocol.html
On Wed, 1 Jan 2025, 21:35 Skip Tavakkolian, <skip.tavakkolian@gmail.com>
wrote:
> Arduino boards now include arm32 and ESP32 (Xtensa) processors in
> addition to atmel AVR. All of the differences are hidden by Arduino
> IDE, which does a good job of plastering over things for these and
> many other (not Arduino) boards, including RISC-V boards.
>
> I would think that the most likely boards that could easily be
> supported on Plan 9 would be the Pi Pico (arm) and Pico 2 (arm +
> riscv) through 5c/ic modifications. Those boards show up as fat32
> drives on USB and the binary can just be copied over (e.g. usbfat: &&
> cp foo /n/sdUx.y). I think SAMD21 boards like XIAO would work very
> similarly.
>
> On Wed, Jan 1, 2025 at 7:48 AM sirjofri <sirjofri+ml-9fans@sirjofri.de>
> wrote:
> >
> > Hi everyone, happy new year,
> >
> > Out of curiosity, I wanted to ask if someone has any experience with
> programming arduino boards on plan 9. The question is not only about
> writing code and compiling it (as that is probably possible), but
> especially for sending the binary over to the chip to make it work.
> >
> > I don't know enough about what protocols are used for that, and how easy
> they are to implement, or maybe if we even have something like that already
> using xyz-modem or whatever.
> >
> > Did anyone do experiments on that already, using plan 9?
> >
> > sirjofri
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-Mdab04cc868a1154670d5d1df
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
[-- Attachment #2: Type: text/html, Size: 3404 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-01 23:21 ` Daniel Maslowski via 9fans
@ 2025-01-02 0:32 ` Skip Tavakkolian
2025-01-02 18:58 ` Noam Preil
0 siblings, 1 reply; 16+ messages in thread
From: Skip Tavakkolian @ 2025-01-02 0:32 UTC (permalink / raw)
To: 9fans
For debugging, there is jtagfs that paurea (Gorka) made many moons
ago. Most boards have JTAG
On Wed, Jan 1, 2025 at 3:27 PM Daniel Maslowski via 9fans
<9fans@9fans.net> wrote:
>
> The ESP MCUs can be easily flashed via serial.
> The protocol is publicly documented:
> https://docs.espressif.com/projects/esptool/en/latest/esp32s3/advanced-topics/serial-protocol.html
>
> On Wed, 1 Jan 2025, 21:35 Skip Tavakkolian, <skip.tavakkolian@gmail.com> wrote:
>>
>> Arduino boards now include arm32 and ESP32 (Xtensa) processors in
>> addition to atmel AVR. All of the differences are hidden by Arduino
>> IDE, which does a good job of plastering over things for these and
>> many other (not Arduino) boards, including RISC-V boards.
>>
>> I would think that the most likely boards that could easily be
>> supported on Plan 9 would be the Pi Pico (arm) and Pico 2 (arm +
>> riscv) through 5c/ic modifications. Those boards show up as fat32
>> drives on USB and the binary can just be copied over (e.g. usbfat: &&
>> cp foo /n/sdUx.y). I think SAMD21 boards like XIAO would work very
>> similarly.
>>
>> On Wed, Jan 1, 2025 at 7:48 AM sirjofri <sirjofri+ml-9fans@sirjofri.de> wrote:
>> >
>> > Hi everyone, happy new year,
>> >
>> > Out of curiosity, I wanted to ask if someone has any experience with programming arduino boards on plan 9. The question is not only about writing code and compiling it (as that is probably possible), but especially for sending the binary over to the chip to make it work.
>> >
>> > I don't know enough about what protocols are used for that, and how easy they are to implement, or maybe if we even have something like that already using xyz-modem or whatever.
>> >
>> > Did anyone do experiments on that already, using plan 9?
>> >
>> > sirjofri
>
> 9fans / 9fans / see discussions + participants + delivery options Permalink
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M4ec49cd5e63d7c377dd8be02
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-01 13:47 [9fans] Arduino programming on plan 9 sirjofri
2025-01-01 16:06 ` lego12239
2025-01-01 20:29 ` Skip Tavakkolian
@ 2025-01-02 18:37 ` Skip Tavakkolian
2025-01-02 20:10 ` Noam Preil
2025-01-02 20:26 ` Charles Forsyth
2025-01-02 20:22 ` Karin Willers
3 siblings, 2 replies; 16+ messages in thread
From: Skip Tavakkolian @ 2025-01-02 18:37 UTC (permalink / raw)
To: 9fans
Another obstacle, most of the driver libraries require C++ support
(e.g. https://github.com/adafruit/Adafruit_Sensor).
On Wed, Jan 1, 2025 at 7:48 AM sirjofri <sirjofri+ml-9fans@sirjofri.de> wrote:
>
> Hi everyone, happy new year,
>
> Out of curiosity, I wanted to ask if someone has any experience with programming arduino boards on plan 9. The question is not only about writing code and compiling it (as that is probably possible), but especially for sending the binary over to the chip to make it work.
>
> I don't know enough about what protocols are used for that, and how easy they are to implement, or maybe if we even have something like that already using xyz-modem or whatever.
>
> Did anyone do experiments on that already, using plan 9?
>
> sirjofri
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-Mb7a892eef7aea77d4ae863bf
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-02 0:32 ` Skip Tavakkolian
@ 2025-01-02 18:58 ` Noam Preil
0 siblings, 0 replies; 16+ messages in thread
From: Noam Preil @ 2025-01-02 18:58 UTC (permalink / raw)
To: 9fans
Is there a link to where that can be found? :)
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M7b81b39e040a54e358253d5d
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-02 18:37 ` Skip Tavakkolian
@ 2025-01-02 20:10 ` Noam Preil
2025-01-02 20:26 ` Charles Forsyth
1 sibling, 0 replies; 16+ messages in thread
From: Noam Preil @ 2025-01-02 20:10 UTC (permalink / raw)
To: 9fans
Yeah, but most of them aren't too hard to replace, it's just flipping
registers and bit logic, and we have C++ code to reference for which
registers do what :)
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M0c54a55197c145f676fb5749
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-01 13:47 [9fans] Arduino programming on plan 9 sirjofri
` (2 preceding siblings ...)
2025-01-02 18:37 ` Skip Tavakkolian
@ 2025-01-02 20:22 ` Karin Willers
2025-01-02 20:56 ` Charles Forsyth
3 siblings, 1 reply; 16+ messages in thread
From: Karin Willers @ 2025-01-02 20:22 UTC (permalink / raw)
To: 9fans
there is a Plan 9 C compiler za/zc/zl available at
https://github.com/forsyth/avr
On 1/1/25 14:47, sirjofri wrote:
> Hi everyone, happy new year,
>
> Out of curiosity, I wanted to ask if someone has any experience with programming arduino boards on plan 9. The question is not only about writing code and compiling it (as that is probably possible), but especially for sending the binary over to the chip to make it work.
>
> I don't know enough about what protocols are used for that, and how easy they are to implement, or maybe if we even have something like that already using xyz-modem or whatever.
>
> Did anyone do experiments on that already, using plan 9?
>
> sirjofri
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-Me997afa9f9b82d4fdefdeab5
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-02 18:37 ` Skip Tavakkolian
2025-01-02 20:10 ` Noam Preil
@ 2025-01-02 20:26 ` Charles Forsyth
1 sibling, 0 replies; 16+ messages in thread
From: Charles Forsyth @ 2025-01-02 20:26 UTC (permalink / raw)
To: 9fans
[-- Attachment #1: Type: text/plain, Size: 1174 bytes --]
i just wrote my own for the avr
On Thu, 2 Jan 2025 at 19:41, Skip Tavakkolian <skip.tavakkolian@gmail.com>
wrote:
> Another obstacle, most of the driver libraries require C++ support
> (e.g. https://github.com/adafruit/Adafruit_Sensor).
>
> On Wed, Jan 1, 2025 at 7:48 AM sirjofri <sirjofri+ml-9fans@sirjofri.de>
> wrote:
> >
> > Hi everyone, happy new year,
> >
> > Out of curiosity, I wanted to ask if someone has any experience with
> programming arduino boards on plan 9. The question is not only about
> writing code and compiling it (as that is probably possible), but
> especially for sending the binary over to the chip to make it work.
> >
> > I don't know enough about what protocols are used for that, and how easy
> they are to implement, or maybe if we even have something like that already
> using xyz-modem or whatever.
> >
> > Did anyone do experiments on that already, using plan 9?
> >
> > sirjofri
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M592a6f2606888fd636e31e26
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
[-- Attachment #2: Type: text/html, Size: 2645 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-02 20:22 ` Karin Willers
@ 2025-01-02 20:56 ` Charles Forsyth
2025-01-02 21:45 ` Ron Minnich
0 siblings, 1 reply; 16+ messages in thread
From: Charles Forsyth @ 2025-01-02 20:56 UTC (permalink / raw)
To: 9fans
[-- Attachment #1: Type: text/plain, Size: 1092 bytes --]
i think davros ought to be out there somewhere too
On Thu, 2 Jan 2025 at 20:36, Karin Willers <karin@visti.de> wrote:
> there is a Plan 9 C compiler za/zc/zl available at
> https://github.com/forsyth/avr
>
> On 1/1/25 14:47, sirjofri wrote:
> > Hi everyone, happy new year,
> >
> > Out of curiosity, I wanted to ask if someone has any experience with
> programming arduino boards on plan 9. The question is not only about
> writing code and compiling it (as that is probably possible), but
> especially for sending the binary over to the chip to make it work.
> >
> > I don't know enough about what protocols are used for that, and how easy
> they are to implement, or maybe if we even have something like that already
> using xyz-modem or whatever.
> >
> > Did anyone do experiments on that already, using plan 9?
> >
> > sirjofri
>
>
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M04d559d91f4658fa809d8562
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
[-- Attachment #2: Type: text/html, Size: 2457 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-02 20:56 ` Charles Forsyth
@ 2025-01-02 21:45 ` Ron Minnich
2025-01-03 7:53 ` Charles Forsyth
0 siblings, 1 reply; 16+ messages in thread
From: Ron Minnich @ 2025-01-02 21:45 UTC (permalink / raw)
To: 9fans
I think somebody who knows where all the bits are could do us a favor
and provide a little writeup on how to do this. I'm lost.
On Thu, Jan 2, 2025 at 1:12 PM Charles Forsyth
<charles.forsyth@gmail.com> wrote:
>
> i think davros ought to be out there somewhere too
>
> On Thu, 2 Jan 2025 at 20:36, Karin Willers <karin@visti.de> wrote:
>>
>> there is a Plan 9 C compiler za/zc/zl available at
>> https://github.com/forsyth/avr
>>
>> On 1/1/25 14:47, sirjofri wrote:
>> > Hi everyone, happy new year,
>> >
>> > Out of curiosity, I wanted to ask if someone has any experience with programming arduino boards on plan 9. The question is not only about writing code and compiling it (as that is probably possible), but especially for sending the binary over to the chip to make it work.
>> >
>> > I don't know enough about what protocols are used for that, and how easy they are to implement, or maybe if we even have something like that already using xyz-modem or whatever.
>> >
>> > Did anyone do experiments on that already, using plan 9?
>> >
>> > sirjofri
>>
>>
>
> 9fans / 9fans / see discussions + participants + delivery options Permalink
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M0d28207225f6503b79dbde32
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-02 21:45 ` Ron Minnich
@ 2025-01-03 7:53 ` Charles Forsyth
2025-01-03 23:46 ` Charles Forsyth
0 siblings, 1 reply; 16+ messages in thread
From: Charles Forsyth @ 2025-01-03 7:53 UTC (permalink / raw)
To: 9fans
[-- Attachment #1: Type: text/plain, Size: 1601 bytes --]
It turns out it's all in that repo, as the os subdirectory
On Thu, 2 Jan 2025, 23:53 Ron Minnich, <rminnich@p9f.org> wrote:
> I think somebody who knows where all the bits are could do us a favor
> and provide a little writeup on how to do this. I'm lost.
>
> On Thu, Jan 2, 2025 at 1:12 PM Charles Forsyth
> <charles.forsyth@gmail.com> wrote:
> >
> > i think davros ought to be out there somewhere too
> >
> > On Thu, 2 Jan 2025 at 20:36, Karin Willers <karin@visti.de> wrote:
> >>
> >> there is a Plan 9 C compiler za/zc/zl available at
> >> https://github.com/forsyth/avr
> >>
> >> On 1/1/25 14:47, sirjofri wrote:
> >> > Hi everyone, happy new year,
> >> >
> >> > Out of curiosity, I wanted to ask if someone has any experience with
> programming arduino boards on plan 9. The question is not only about
> writing code and compiling it (as that is probably possible), but
> especially for sending the binary over to the chip to make it work.
> >> >
> >> > I don't know enough about what protocols are used for that, and how
> easy they are to implement, or maybe if we even have something like that
> already using xyz-modem or whatever.
> >> >
> >> > Did anyone do experiments on that already, using plan 9?
> >> >
> >> > sirjofri
> >>
> >>
> >
> > 9fans / 9fans / see discussions + participants + delivery options
> Permalink
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M4257b09b7452427ae940f0a6
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
[-- Attachment #2: Type: text/html, Size: 3325 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-03 7:53 ` Charles Forsyth
@ 2025-01-03 23:46 ` Charles Forsyth
2025-01-07 4:40 ` Lucio De Re
0 siblings, 1 reply; 16+ messages in thread
From: Charles Forsyth @ 2025-01-03 23:46 UTC (permalink / raw)
To: 9fans
[-- Attachment #1: Type: text/plain, Size: 1789 bytes --]
I noticed a few directories were still GPL; they are now MIT.
On Fri, 3 Jan 2025 at 07:53, Charles Forsyth <charles.forsyth@gmail.com>
wrote:
> It turns out it's all in that repo, as the os subdirectory
>
> On Thu, 2 Jan 2025, 23:53 Ron Minnich, <rminnich@p9f.org> wrote:
>
>> I think somebody who knows where all the bits are could do us a favor
>> and provide a little writeup on how to do this. I'm lost.
>>
>> On Thu, Jan 2, 2025 at 1:12 PM Charles Forsyth
>> <charles.forsyth@gmail.com> wrote:
>> >
>> > i think davros ought to be out there somewhere too
>> >
>> > On Thu, 2 Jan 2025 at 20:36, Karin Willers <karin@visti.de> wrote:
>> >>
>> >> there is a Plan 9 C compiler za/zc/zl available at
>> >> https://github.com/forsyth/avr
>> >>
>> >> On 1/1/25 14:47, sirjofri wrote:
>> >> > Hi everyone, happy new year,
>> >> >
>> >> > Out of curiosity, I wanted to ask if someone has any experience with
>> programming arduino boards on plan 9. The question is not only about
>> writing code and compiling it (as that is probably possible), but
>> especially for sending the binary over to the chip to make it work.
>> >> >
>> >> > I don't know enough about what protocols are used for that, and how
>> easy they are to implement, or maybe if we even have something like that
>> already using xyz-modem or whatever.
>> >> >
>> >> > Did anyone do experiments on that already, using plan 9?
>> >> >
>> >> > sirjofri
>> >>
>> >>
>> >
>> > 9fans / 9fans / see discussions + participants + delivery options
>> Permalink
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M35870a7cf37489244e5d6d8b
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
[-- Attachment #2: Type: text/html, Size: 3791 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [9fans] Arduino programming on plan 9
2025-01-03 23:46 ` Charles Forsyth
@ 2025-01-07 4:40 ` Lucio De Re
0 siblings, 0 replies; 16+ messages in thread
From: Lucio De Re @ 2025-01-07 4:40 UTC (permalink / raw)
To: 9fans
On 2025/01/04 01:46, Charles Forsyth wrote:
> I noticed a few directories were still GPL; they are now MIT.
>
Just because it was a bit obscured (and I tend to be a little slow):
https://github.com/forsyth/avr.git
Lucio.
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/Te49c9f35d98406f5-M6f8f015fdfd61c7e739655e2
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription
^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2025-01-07 4:58 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-01 13:47 [9fans] Arduino programming on plan 9 sirjofri
2025-01-01 16:06 ` lego12239
2025-01-01 16:21 ` Charles Forsyth
2025-01-01 20:29 ` Skip Tavakkolian
2025-01-01 23:21 ` Daniel Maslowski via 9fans
2025-01-02 0:32 ` Skip Tavakkolian
2025-01-02 18:58 ` Noam Preil
2025-01-02 18:37 ` Skip Tavakkolian
2025-01-02 20:10 ` Noam Preil
2025-01-02 20:26 ` Charles Forsyth
2025-01-02 20:22 ` Karin Willers
2025-01-02 20:56 ` Charles Forsyth
2025-01-02 21:45 ` Ron Minnich
2025-01-03 7:53 ` Charles Forsyth
2025-01-03 23:46 ` Charles Forsyth
2025-01-07 4:40 ` Lucio De Re
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).