techhub.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A hub primarily for passionate technologists, but everyone is welcome

Administered by:

Server stats:

5.4K
active users

#RaspberryPiPico

4 posts4 participants0 posts today

RC2040

I’ve recently gotten hold of a RC2014 computer and it’s great. Once I’ve gone beyond some of the basic tutorials online I might start posting something about it at some point, so watch this space.

But also, I stumbled across the RC2040 project and kit from Extreme Kits (https://extkits.co.uk/product/rc2040/). Described as a “Retro emulated Z80 CP/M computer kit” it is basically a rc2014 emulated on a Raspberry Pi Pico. So I just had to get one to have a play with that too!

It comes as a PCB, acrylic baseplate and then a pile of components – mostly resistors, buttons, jumper. The PCB itself has the surface mount footprint for the Raspberry Pi Pico – and as it is essentially emulating a RC2014, hence the name RC2040.

These are my “notes to self” to remind me what I did to get up and running as the instructions are somewhat spread around and I felt assume a bit of knowledge of the RC2014 and the Z80 ecosystem that I don’t yet have.

Main resources and references:

This post has the main usage points, which are mostly in the getting started pages, but with a few extras I had to figure out on the way too.

PCB Build Notes

If you’re thinking about getting one of these kits, take particularly note of the warning about the micro SD card connector.

This has to be soldered on using surface mount 1mm pitch connectors and to say it is fiddly is putting it mildly! And you almost certainly won’t know if you’ve succeeded until everything else is together and you’re reading data from the card…

There is a note on the product page to ask for help prior to ordering if you want it done for you.

I just went slowly with it, fixing one of the larger grounding pads first and then using that to orient the other pins before soldering any of the others. Then it was checked thoroughly with a magnifying glass before continuing.

Other things to consider:

  • I went with the suggestion of using a slider switch for the USB/UART selector rather than jumper headers. This is connected to GP13 and used by the firmware to decide where to direct the serial output – over USB or to the UART. The outer position means UART, and the position nearer the Pico means USB.
  • There is a speaker socket, which links to GP14, GP15 and GND directly with no additional circuitry.
  • There is a FTDI socket which is connected to GP0, GP1, 5V (VBUS) and GND. There is a solder jumper (JP2) on the underside of the board that is unconnected by default, that determines if 5V comes from FDTI or not.
  • There is also a solder jumper (JP1) to select 3V3 or 5V serial on the FTDI header. This is connected by default for 5V operation as it connects a 22K resistor from the header “TX” pin to GND, making a resistor divider with the 10K in series resistor. Note: TX on the header goes to the Pico RX Pin (GP1), and RX goes to TX (GP0).
  • Although it isn’t shown on the schematic (that I could spot) there is also a solder jumper (JP3) on the underside of the board “has switches”. This is connected by default and indicates that there are configuration switches on this board (see later).
  • It wasn’t immediately obvious (to me) which way round the LED went, but probing with a meter, the cathode is the pin nearest the edge of the board which connects via the 1K resistor to GND.

With hindsight, I suspect it would have been more useful for me to have had switches instead of the A13, A14, A15 jumpers and a jumper for the USB/UART setting.

Boot Configurations

This is one area I was getting quite confused over… I think there is where knowledge of the RC2014 boot options and ROM sets would really help, but what I think is happening is as follows.

The ROM file provided is 24886009.bin. Each number represents a single bank of the ROM and consequently an address jumper setting. Following the key from here, this decodes as:

  • Bank 0 – 000 – 2 – Microsoft BASIC, for 32k RAM, SIO/2, with origin 0x0000
  • Bank 1 – 001 – 4 – Microsoft BASIC, for 56k RAM, SIO/2, with origin 0x0000
  • Bank 2+3 – 010 – 88 – Small Computer Monitor for pageable ROM, 64k RAM, SIO/2 or 68B50 ACIA, with Microsoft BASIC and CP/M boot options
  • Bank 4 – 100 – 6 – CP/M Monitor, for pageable ROM, 64k RAM, SIO/2, CF Module at 0x10, with origin at 0x0000
  • Bank 5 – 101 – 0 – Empty
  • Bank 6 – 110 – 0 – Empty
  • Bank 7 – 111 – 9 – Small Computer Monitor for any ROM, any RAM, any UART

When the RC2040 is oriented with USB on the left and the address jumpers at the bottom right of the board, the order is inverted. For the A13-A14-A15 Jumper settings: “1” is the position nearest the Pico; “0” is the position nearest the edge of the board.

So, in A13-A14-A15 order the options are:

  • 000 – Bank 0: Boot into MS Basic
  • 001 – Bank 4: Z80 SBC Boot ROM
  • 010 – Bank 2+3: SC monitor

The following go into a loop for me:

  • 100 – Bank 1: Repeated “>” in a loop
  • 111 – Bank 7: Repeated “Read Fail” then drops into SC monitor

As might be expected the remaining two options (101,011) do nothing.

MS Basic (000) is the same as the standard image for RC2014 that I had by default with my kit.

Booting into the SC monitor (010) works fine too. When selecting help (“?”) there are three options at the bottom to boot into BASIC, WBASIC (“warm start” BASIC) or CPM.

Booting into the CP/M monitor appears to offer some basic options (once the “press [space] to access console” message appears and space has been pressed), but apparently only the boot into CP/M will work.

It would seem that the most versatile option is to use the SC monitor (010) mode for now.

A side note on boot configuration

There are a number of places in the emulator code where a choice is made between reading configuration switches and using a configuration from the rc2040.ini file on the SD Card.

There is a hardware indication of using switches. This is determined by the setting of GP22. In the board, this is tied to GND which means “this board has switches” (i.e. address jumpers). But it is tied to GND via a (connected) solder jumper which doesn’t appear to be on the schematic. This also determines if the USB/UART jumper is present.

There is also a config setting which can determined if the switches should be overridden by what is in the config file. This is the setting [ROM]\ovjump. If this is present and set to 1 then the A13-A14-A15 values are read from the rc2040.ini file rather than the A13-A14-A15 jumper settings.

In the readme file for the SD card contents, two rc2040.ini configurations are described. The actual rc2040.ini file present is the SIO2 configuration.

Usage Notes

When using USB serial, the board will pause until a serial link is established. This is pretty handy as when resetting the Pico I lose the connection in PuTTY, but on “Restart Session” the session is re-established and the Pico will then boot up.

The buttons do the following:

  • Pico RESET. This is hard-wired to the Pico RUN pin so does a proper hardware reset of the Pico.
  • Z80 RESET. This is on GP7 and performs a “soft” reset, in that it performs an emulator Z80 reset.
  • BUT. On GP8. This is related to fast file transfers apparently (tbd).
  • DUMP. GP9. Dumps the RAM contents to the serial terminal and SD card.

There is a good reference for additional useful rc2040.ini file settings here: https://www.extremeelectronics.co.uk/more-rc2040-settings/

GP16,17,18,19,20,21,26,27 are broken out on an additional header and form the 8 bits of a single Z80 IO port. By default this is at PORT address 0 but that can be changed with the [PORT]\pioa rc2040.ini file option.

Conclusion

This will do for the time being. I think I now understand how this can boot into either BASIC or CP/M, so next is to do some reading about how to get different programmes running under CP/M.

Kevin

První release PicoBike kompletní 🥳
Ve verzi 0.1 je funkční rychloměr a vzdálenost trip. Zároveň hardwarově jsem ještě daleko od toho, čeho jsem chtěl dosáhnout. Ale jako pracovní verzi to považuji za dost dobré na to, abych projekt chtěl pustit do světa 😊
Přijímám kritiku, rád zodpovím dotazy a ještě raději se poučím jak co se týká psaní kódu, tak co se týká správy repozitáře. Přeci jen jedu metodou pokus-omyl 😅
codeberg.org/janez/PicoBike/re

Summary card of an release titled "v0.1" in repository janez/PicoBike
Codeberg.orgv0.1 - janez/PicoBike# Initial version release This is initial version release for most basic functionality. So far display, speed and distance were tested. The rest of functions are experimental. ## Supported functions ### Displays Tested displays: - SH1107 OLED Display 128x128px - ST7565 LCD Display 1...

ph0wn labs #2: Raspberry Pico (RP2040)

- 📆 next Tuesday: April 1st, 2025
- ⏰ time: 19:00 - 22:00
- 🗺️ Sophia Hack Lab (SHL) - 2323 Chem. de Saint-Bernard, Space Antipolis Batiment 9, 06220 Vallauris - Sophia Antipolis. On site only - no recording.

1. Setup Pico SDK
2. Pico le Croco's car engine won't start! Help him repair it, and solve ph0wn 2024 CTF challenge Pico PCB
3. Implement an April Fool program for the board, and flash it

Have fun!
Don't forget your laptop, you'd be left with your eyes to cry. Please check your laptop has a USB slot Type A. If not, come with an adapter.
+ install a disassembler (Ghidra, IDA Pro, Radare2...)

NB. Pico le Croco is not affiliated with the Raspberry Pico, but the play on words was so tempting...

In today's brave new world 🌎, we've reinvented the crystal radio 📻 with the cutting-edge Raspberry Pi Pico — because nothing screams "digital age" like repackaging century-old tech in a microcontroller. Who needs batteries when you can power your #nostalgia with over-explained documentation and faint whispers of radio waves? 😂🔋
101-things.readthedocs.io/en/l #crystalradio #RaspberryPiPico #digitalage #techinnovation #HackerNews #ngated

101-things.readthedocs.ioPi Pico Rx - A crystal radio for the digital age? — 101 Things 0.1 documentation

Many people wanted a RESET button on their Pico but I decided to make one without buttons 🤣 .

It currently has no FLASH/PSRAM and boots over UART (3-pin at the bottom) or you can upload a UF2 over USB. The I2C expander towards the bottom (4-pin STEMMA QT) can twiddle the BOOTSEL, SD1 and RUN pins.

Clockwork PicoCalc is a retro handheld powered by a Raspberry Pi Pico

The PicoCalc is a new handheld with a retro design. At first glance it looks more like a graphing calculator than a modern handheld device. But it sports a QWERTY keyboard, a 4 inch display, and a mainboard designed to accommodate a Raspberry Pi Pico.

Available for $75 from the Clockwork Pi store, it’s also the latest in a line of retro-inspired, modular, and open source products from the […]

#clockwork #clockworkPi #handheld #mcu #openHardware #picocalc #raspberryPiPico

Read more: liliputing.com/clockwork-picoc

Lilbits: A weird new AI phone, Apple refreshes the MacBook Air, Intel Arrow Lake goes business-class, and postmarketOS is looking for a new name

Would you be willing to grant a smartphone with access to huge amounts of personal date in order to develop a personalized AI assistant that an help you get things done? Arguably that’s something you may already be doing if you’re using an Android phone, but a startup called Newnal is taking things to a new level with a phone that not only generates an AI avatar that you can communicate […]

#ai #apple #arrowLake #lilbits #m4 #macbookAir #mobileLinux #mwc2025 #newnal #postmarketos #qualcomm #raspberryPi #raspberryPiPico #rp2040 #sc8480xp #snapdragonXEliteGen2 #vpro

Read more: liliputing.com/lilbits-a-weird

I've now put up the designs for my own take on a MIDI touch board based on the Raspberry Pi PIco, based on ideas from my Pico Touch Keyboard that I published before. It's something I've been meaning to do for some time!

As well as 21 GPIO touch pads with holes that are Lego compatible, this includes serial MIDI IN/OUT.

With hindsight, I should have added a PWM filter too :)

diyelectromusic.com/2025/03/02