Path: csiph.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: rbowman Newsgroups: comp.os.linux.misc Subject: Re: Memory Safety (Re: Python: A Little Trick For Every Need) Date: 12 Feb 2026 04:48:47 GMT Lines: 28 Message-ID: References: <10lrt1t$16vf1$1@dont-email.me> <-EOdnRUZmNTqQx_0nZ2dnZfqn_qdnZ2d@giganews.com> <10m28je$38cir$3@dont-email.me> <10m2bqs$39oes$1@dont-email.me> <10m2qvk$3g6mr$1@dont-email.me> <10m4go5$2gva$3@dont-email.me> <10m7b6c$10ebk$7@dont-email.me> <20260209100449.0000348a@gmail.com> <20260210080035.000048d0@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: individual.net LNlod17RkiFh65bUbYijDQGRxVPRYPQgJMqd5E+VxKQ8M0MAqe Cancel-Lock: sha1:pvMjKkeAHyQzY9CVR6QM+Fz5apA= sha256:8qcZ+3sA5lVZxEFYqjWXvXhXGozeP1YDOWHBfkK5omI= User-Agent: Pan/0.162 (Pokrosvk) Xref: csiph.com comp.os.linux.misc:81966 On Wed, 11 Feb 2026 20:22:32 -0500, c186282 wrote: > There have become a large selection of really sophisticated sensors > out there - multi-axis super-precise position/motion sensors, multi- > axis magnetometers with impressive sensitivity, > those kinds of things. They're aimed mostly at the mobile bot/drone > markets. The prices are impressively good now too. But they are SO > capable, SO many options, so many relevant factors, that you really > need a 'sensor nerd' to lay it all out in a comprehensible manner. https://docs.arduino.cc/hardware/nano-33-ble-sense/ The Harvard TinyML series used these so I have a couple plus the expansion board to a camera for image recognition that was in their kit. Saves you a lot of Dupont wires :) https://www.adafruit.com/product/3333 I bought one of these 6 years ago and it was my introduction to CircuitPython and ARM Cortex M0. Not a bad package to play with. CircuitPython can be a little friendlier that MicroPython but the last time I looked it didn't do interrupts. I don't think it has the decorator that MircoPython uses to do the weird little GPIO assembler stuff either. So many toys, so little time. I'm starting to miss the old toys though. When you dig into the guts of the Pico 2's processor it gets gnarly. 4 cores, 2 ARM and 2 RISC-V plus all the wiring to bridge to the GPIOs. Lot of registers with a lot of bits is you got deep into the C stuff.