Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.os.linux.misc > #66733
| From | rbowman <bowman@montana.com> |
|---|---|
| Newsgroups | comp.os.linux.misc |
| Subject | Re: F2FS On USB Sticks? |
| Date | 2025-03-30 00:31 +0000 |
| Message-ID | <m4rhngFdkg1U1@mid.individual.net> (permalink) |
| References | (15 earlier) <sm0y0wqq08n.fsf@lakka.kapsi.fi> <a96cndfwF5EN6Xr6nZ2dnZfqn_qdnZ2d@giganews.com> <vs8tgq$1f267$2@dont-email.me> <m4qoeoF9vuuU1@mid.individual.net> <vs9jf6$25828$3@dont-email.me> |
On Sat, 29 Mar 2025 19:59:34 +0000, The Natural Philosopher wrote: > On 29/03/2025 17:20, rbowman wrote: >> On Sat, 29 Mar 2025 13:44:58 +0000, The Natural Philosopher wrote: >> >>> On 29/03/2025 04:18, c186282 wrote: >>>> For today's uses, esp for newbies, the Pico is likely >>>> one of your best choices. >>> Getting the SDK installed and working is non trivial. Getting Cmake to >>> do what's wanted is non trivial... >> >> "Getting started with Raspberry Pi Pico-series" >> >> https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf >> >> If you can't follow that you probably shouldn't be messing with a Pico >> without adult supervision. >> > You may follow it., bit it doesn't always work... I'm certain people can figure out how to fuck it up. > >> 1. Install VS Code 2. Install the Raspberry Pi Pico VS Code Extension >> 3. Compile and run 'blink' >> >> "The extension will now download the SDK and the toolchain, install >> them locally, and generate the new project. The first project may take >> 5-10 minutes to install the toolchain. VS Code will ask you whether you >> trust the authors because we’ve automatically generated the .vscode >> directory for you. Select yes." >> >> On some Linux distros you may have to install python, git, tar, and >> build- >> essentials. >> > And cmake ... To repeat: "The first project may take >> 5-10 minutes to install the toolchain." The toolchain includes cmake. > Have you actually done this yourself? Yes, most recently with the Pico2 W I got last week. The Raspberry Pi Pico extension allows you to specify the board and correctly handles the Pico W and Pico 2 W boards. // Pico W devices use a GPIO on the WIFI chip for the LED, // so when building for Pico W, CYW43_WL_GPIO_LED_PIN will be defined #ifdef CYW43_WL_GPIO_LED_PIN #include "pico/cyw43_arch.h" #endif Because the onboard LED is integrated with the WiFi chip the procedure is more complicated than the the non-W blink. And before you ask, I have also used CircuitPython, MicroPython, and the Arduino framework with the Pico to compare them. For a Python solution I prefer MicroPython since it handles interrupts and _utilizing the second core. I have not yet tried the RISC-V core in the Pico 2. MicroPython also has a decorator that allows for inline PIO programming that I do not believe CircuitPython has. The Arduino core approach allows using the C/C++ structure familiar to many people but I'm sure at some point if you need to get down into the weeds to do bit-twiddling in the registers you would need to use the RPi C/C++ SDK.
Back to comp.os.linux.misc | Previous | Next — Previous in thread | Next in thread | Find similar
F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-21 03:04 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-21 03:13 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-21 19:01 +0000
Re: F2FS On USB Sticks? Richard Kettlewell <invalid@invalid.invalid> - 2025-03-21 19:40 +0000
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-22 14:17 +0100
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-26 21:00 +0000
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-28 14:49 +0100
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-28 21:18 +0000
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-28 23:17 +0100
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-29 00:01 +0000
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-28 23:18 +0000
Re: F2FS On USB Sticks? Richard Kettlewell <invalid@invalid.invalid> - 2025-03-28 23:55 +0000
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-29 00:02 +0000
Re: F2FS On USB Sticks? Richard Kettlewell <invalid@invalid.invalid> - 2025-03-29 09:13 +0000
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-31 01:28 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-31 03:57 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-31 11:48 +0100
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-28 20:00 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-29 13:47 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-30 03:14 -0400
Re: F2FS On USB Sticks? ant@zimage.comANT (Ant) - 2025-03-30 23:48 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-31 04:37 -0400
Re: F2FS On USB Sticks? Anssi Saari <anssi.saari@usenet.mail.kapsi.fi> - 2025-03-21 11:20 +0200
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-21 12:25 +0100
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-21 07:31 -0400
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-21 13:20 +0100
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-21 19:11 +0000
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-22 00:41 +0000
Re: F2FS On USB Sticks? not@telling.you.invalid (Computer Nerd Kev) - 2025-03-22 11:42 +1000
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-22 07:07 +0000
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-22 13:37 +0000
Re: F2FS On USB Sticks? not@telling.you.invalid (Computer Nerd Kev) - 2025-03-23 07:49 +1000
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-27 06:21 +0000
Re: F2FS On USB Sticks? not@telling.you.invalid (Computer Nerd Kev) - 2025-03-28 07:28 +1000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-22 04:38 -0400
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-22 11:21 +0100
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-22 14:07 +0100
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-22 17:29 +0100
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-22 20:37 +0100
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-23 08:25 +0100
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-23 14:49 +0100
Re: F2FS On USB Sticks? Anssi Saari <anssi.saari@usenet.mail.kapsi.fi> - 2025-03-22 23:28 +0200
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-22 23:25 +0100
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-23 08:26 +0100
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-27 04:42 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-27 04:13 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-22 13:39 +0000
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-22 15:26 +0100
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-22 17:52 +0000
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-22 19:02 +0100
Re: F2FS On USB Sticks? Anssi Saari <anssi.saari@usenet.mail.kapsi.fi> - 2025-03-22 23:35 +0200
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-23 08:28 +0100
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-23 14:57 +0100
Re: F2FS On USB Sticks? "David W. Hodgins" <dwhodgins@nomail.afraid.org> - 2025-03-23 11:58 -0400
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-27 06:17 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-27 05:41 -0400
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-27 16:49 +0100
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-23 05:58 -0400
Re: F2FS On USB Sticks? not@telling.you.invalid (Computer Nerd Kev) - 2025-03-23 07:55 +1000
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-23 08:28 +0100
Re: F2FS On USB Sticks? Stéphane CARPENTIER <sc@fiat-linux.fr> - 2025-03-23 16:33 +0000
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-27 06:11 +0000
Re: F2FS On USB Sticks? candycanearter07 <candycanearter07@candycanearter07.nomail.afraid> - 2025-04-06 05:10 +0000
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-04-06 06:42 +0000
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-04-06 07:07 +0000
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-22 22:59 +0000
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-23 00:46 +0000
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-22 20:39 +0100
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-23 05:57 -0400
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-23 11:04 +0100
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-23 07:15 -0400
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-23 15:37 +0100
Re: F2FS On USB Sticks? Stéphane CARPENTIER <sc@fiat-linux.fr> - 2025-03-23 16:41 +0000
Re: F2FS On USB Sticks? Marc Haber <mh+usenetspam1118@zugschl.us> - 2025-03-23 17:50 +0100
Re: F2FS On USB Sticks? Richard Kettlewell <invalid@invalid.invalid> - 2025-03-23 18:02 +0000
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-24 11:33 +0000
Re: F2FS On USB Sticks? Richard Kettlewell <invalid@invalid.invalid> - 2025-03-24 13:30 +0000
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-27 06:19 +0000
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-22 17:47 +0000
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-22 20:41 +0100
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-22 13:35 +0000
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-22 19:09 +0000
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-23 00:52 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-23 06:05 -0400
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-23 19:06 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-23 23:36 -0400
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-24 06:48 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-24 03:49 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-24 11:31 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-25 01:18 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-25 11:13 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-25 08:31 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-25 14:20 +0000
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-26 04:39 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-26 04:22 -0400
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-26 17:09 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-27 03:51 -0400
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-27 18:09 +0000
Re: F2FS On USB Sticks? Richard Kettlewell <invalid@invalid.invalid> - 2025-03-27 18:55 +0000
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-27 23:53 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-28 05:16 -0400
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-28 07:21 -0400
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-28 18:51 +0000
Re: F2FS On USB Sticks? Anssi Saari <anssi.saari@usenet.mail.kapsi.fi> - 2025-03-27 11:41 +0200
Re: F2FS On USB Sticks? not@telling.you.invalid (Computer Nerd Kev) - 2025-03-28 07:44 +1000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-29 00:18 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-29 13:44 +0000
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-29 17:20 +0000
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-29 19:59 +0000
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-30 00:31 +0000
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-30 18:10 +0100
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-30 02:59 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-30 18:11 +0100
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-30 18:26 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-31 04:19 -0400
Re: F2FS On USB Sticks? Charlie Gibbs <cgibbs@kltpzyxm.invalid> - 2025-03-31 17:38 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-31 03:58 -0400
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-30 18:19 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-31 04:16 -0400
Re: F2FS On USB Sticks? rbowman <bowman@montana.com> - 2025-03-26 04:16 +0000
Re: F2FS On USB Sticks? "Carlos E.R." <robin_listas@es.invalid> - 2025-03-22 14:04 +0100
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-22 13:50 +0000
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-27 07:31 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-23 05:49 -0400
Re: F2FS On USB Sticks? Lawrence D'Oliveiro <ldo@nz.invalid> - 2025-03-27 02:33 +0000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-21 20:28 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-21 19:06 +0000
Re: F2FS On USB Sticks? D <nospam@example.net> - 2025-03-21 22:08 +0100
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-21 20:54 -0400
Re: F2FS On USB Sticks? not@telling.you.invalid (Computer Nerd Kev) - 2025-03-22 11:47 +1000
Re: F2FS On USB Sticks? c186282 <c186282@nnada.net> - 2025-03-22 04:47 -0400
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-22 13:49 +0000
Re: F2FS On USB Sticks? The Natural Philosopher <tnp@invalid.invalid> - 2025-03-22 13:45 +0000
Re: F2FS On USB Sticks? not@telling.you.invalid (Computer Nerd Kev) - 2025-03-23 07:59 +1000
csiph-web