Trirosmos / pico_gg_lcd

Open source Game Gear replacement screen mod based on the RP2040.
MIT License
7 stars 1 forks source link

Can't compile source code (can you add help in readme ?) #1

Open YoGitpp opened 2 weeks ago

YoGitpp commented 2 weeks ago

Hello,

I am trying to compile source code, but it don't work.

By the way, I don't see sdk C definition in .PIO ASM files. https://github.com/raspberrypi/pico-examples/blob/master/pio/hello_pio/hello.pio ... % c-sdk { ... }

I don't know what to do with 'memmap_gg.ld'.

In branch ILI9486, one variable is not declared : pixels_a_capturar

Thank you for this project !

Trirosmos commented 2 weeks ago

Hi!

As of right now, the project is in a pre-alpha state and a bit far from feature-complete. Once I do finish development on the main featureset, I plan on writing build/installation guides as well as providing release binaries.

In regards to the linker script provided, it's just a custom script I was using as a way of making sure the compiler won't allocate anything in the area of RAM that is being used as a framebuffer. If you want to use it, you should drop it in your pico/src/rp2_common/pico_standard_link folder.

As for the ILI9486 branch, it's mostly there for historical reasons as that LCD controller ended up being a pain to work with. It won't see any new development and I don't recommend building a mod based on it.