August 19, 2026, 03:20:56 PM

Recent posts

#1
A20 / Re: LIME2-4GB dead or not?
Last post by LubOlimex - August 18, 2026, 04:40:11 PM
No idea, I've only used Balena Etcher and USBImager to prepare the images and then "dd" in the command line. Try with either Balena Etcher or USBImager both have Linux releases.
#2
A20 / Re: Working Linux driver for U...
Last post by LubOlimex - August 18, 2026, 04:37:35 PM
For Linux use the drivers and instructions at this GitHub article:

https://github.com/shenmintao/aic8800d80

Try something like:

sudo apt install git dkms build-essential linux-headers-$(uname -r) eject usb-modeswitch
git clone https://github.com/shenmintao/aic8800d80.git
cd aic8800d80
sudo ./install.sh
sudo reboot
#3
FPGA / Re: Olimex GateMateA1-EVB + On...
Last post by LubOlimex - August 18, 2026, 03:38:12 PM
Well if your FPGA bit stream implements UART and maps it to RP2040 debug-UART pins, it should.
#4
FPGA / Re: Olimex GateMateA1-EVB + On...
Last post by dettus - August 18, 2026, 11:33:37 AM
Thank you.

My question is, if that would give me a functioning UART, one that I can use from my PC?
#5
FPGA / Re: Olimex GateMateA1-EVB + On...
Last post by LubOlimex - August 18, 2026, 08:24:38 AM
DBG_UART_TX <= DBG_UART_RX would probably drive the RP2040 TX line from the FPGA side, maybe assign DBG_UART_RX = DBG_UART_TX; instead
#6
FPGA / Olimex GateMateA1-EVB + Onboar...
Last post by dettus - August 17, 2026, 09:44:15 PM
Hello!

So, I do have an Olimex GateMateA1-EVB.
Currently, I am using the PMOD to attach my design's UART to the outside world.

But I just discovered that there are Pins marked DBG_UART_TX and DBG_UART_RX connected to the RP2040.
Are they accessible through the USB connector?

Currently, I am thinking about a design like this:


always @(posedge clk)
begin
    DBG_UART_TX<=DBG_UART_RX;
end

P.S.: I currently do not have physical access to the board, so I am asking, instead of trying. :)
#7
A20 / Re: T2-OLinuXino-LIME2-IND are...
Last post by LubOlimex - August 17, 2026, 03:39:41 PM
You need micro SD card. You prepare the micro SD card via card reader/writer and personal computer (some laptops have built-in SD card writer). The software to download to the card is free - my recommendation is to start with the base Olimage Linux image. Refer to the Olimage Linux guide for detailed step-by-step instructions:

https://raw.githubusercontent.com/OLIMEX/OLINUXINO/master/DOCUMENTS/OLIMAGE/Olimage-guide.pdf
#8
A20 / T2-OLinuXino-LIME2-IND are thi...
Last post by sasha2002 - August 17, 2026, 02:10:45 PM
Hi
T2-OLinuXino-LIME2-IND are this board without storage?
For what it can be used then?
I've bought it but totally not understand where to flash the OS
Can anyone help?
#9
FPGA / Re: GateMateA1-EVB-2M - use fl...
Last post by LubOlimex - August 17, 2026, 11:21:18 AM
Pretty much, yes.
#10
A20 / Re: difference between A20-OLi...
Last post by LubOlimex - August 17, 2026, 11:18:58 AM
The board will boot without problems without SPI flash! In the case of A20-OLinuXino-LIME2-s16M and A20-OLinuXino-LIME2 - leaving the SPI empty won't cause issues.

The SPI flash is mainly needed when you have eMMC, to facilitate the boot process from eMMC (because the A20 bootloader doesn't support newer eMMCs). Hence we have no eMMC variants without SPI flash. But in the case of A20-OLinuXino-LIME2-s16M there is no eMMC so it is fine!