Page 1 of 2

Question about Luckfox Pico Max RV1106G3

Posted: 2024-10-21 20:37
by KSV
Hi. Is it possible to replace the NAND flash with a larger one, (256 MB this is very small)/ Will it be enough to resolder the chip itself?
And another question is will it work LCD1602?

Re: Question about Luckfox Pico Max RV1106G3

Posted: 2024-10-22 1:08
by Alenwowo
Hello, we don't have experience in replacing NAND, and we can't guarantee that it will still work properly after replacement, so please use your own discretion.LCD1602, it should work fine, provided that you can find the driver for it.

Re: Question about Luckfox Pico Max RV1106G3

Posted: 2024-10-22 8:25
by KSV
Alenwowo wrote: 2024-10-22 1:08 Hello, we don't have experience in replacing NAND, and we can't guarantee that it will still work properly after replacement, so please use your own discretion.LCD1602, it should work fine, provided that you can find the driver for it.
Hello. Am I right in understanding that this board should work in the style of a Raspberry Pi? That is, we connect via i2C, write code in Python and launch it?

Re: Question about Luckfox Pico Max RV1106G3

Posted: 2024-10-23 1:03
by Alenwowo
KSV wrote: 2024-10-22 8:25
Alenwowo wrote: 2024-10-22 1:08 Hello, we don't have experience in replacing NAND, and we can't guarantee that it will still work properly after replacement, so please use your own discretion.LCD1602, it should work fine, provided that you can find the driver for it.
Hello. Am I right in understanding that this board should work in the style of a Raspberry Pi? That is, we connect via i2C, write code in Python and launch it?
Hello, our boards support the use of python code drivers.

Re: Question about Luckfox Pico Max RV1106G3

Posted: 2024-10-30 19:10
by KSV
Hello. I ordered the pro version. I look at the flash chip. It says that it is winbond 25n02kvzeir. The datasheet says that it has 2 GB. But your manuals say that it is 258 MB. How can this be?

https://www.mouser.com/datasheet/2/949/ ... 525892.pdf

Re: Question about Luckfox Pico Max RV1106G3

Posted: 2024-10-31 2:10
by Crocodile
Hello, the actual size of the spi-nand used by RV1106G3 is 2Gb = 256MB (1B = 8b)

Re: Question about Luckfox Pico Max RV1106G3

Posted: 2024-11-18 12:39
by KSV
Hello. I came across a question whether the RV1106G3 board allows you to output information about the battery status in the RTC module? I need this to display the charge level icon on the OLED 0.96 screen. The article is about Raspberry Pi 5, but maybe there is something similar in the RV1106G3 board.

https://www.cytron.io/tutorial/rtc-rasp ... mEDgjgYPDB

Re: Question about Luckfox Pico Max RV1106G3

Posted: 2024-11-18 13:43
by Crocodile
Unfortunately, the RTC pin of the RV1106 does not have the function of detecting voltage, and the effect you need to achieve may need to be achieved by other means.

Re: Question about Luckfox Pico Max RV1106G3

Posted: 2024-11-19 9:56
by KSV
Hello. I encountered another problem. The system assembled in buildroot does not return the host name if dhcp is used. I enabled the use of the dhcp client package in buildroot, but this did not give any effect. I also tried to use the parameter send host-name = gethostname(); or send host-name = $hostname; on a running system, there is no result either. I need to use this function because I need to identify using dhcp. How can I overcome this issue?

Re: Question about Luckfox Pico Max RV1106G3

Posted: 2024-11-20 3:05
by Crocodile
You can try using shell commands to define the environment variables you need

Code: Select all

export host-name=<Your HOST name>
This command needs to be run every time you enter the shell, or you can add it to /etc/profile to run automatically every time you enter the shell