2016-08-16 13:20:56 +02:00
|
|
|
# Changes in forked version
|
2016-09-28 07:33:21 +00:00
|
|
|
|
2016-08-16 13:20:16 +02:00
|
|
|
- New target platform: Pi 3
|
|
|
|
- Optimizations for Pi 3 added
|
|
|
|
- Pi 3 is now the default target if no Platform is specified
|
2016-09-17 19:30:38 +02:00
|
|
|
- Added support for custom functions assignable to keyboard LEDs (e.g. HD activity)
|
2016-09-01 11:49:45 +02:00
|
|
|
- Code formatting and cleanup
|
2016-09-23 09:49:22 +02:00
|
|
|
- FullHD (1080p) resolution supported in Picasso96 mode.
|
2016-09-03 16:54:13 +02:00
|
|
|
- Pi Zero / Pi 1 version now has full Picasso96 support.
|
2016-09-17 19:30:38 +02:00
|
|
|
- Removed Pandora specific keyboard shortcuts which caused crashes
|
|
|
|
- Loading the Configuration file now respects the input settings
|
|
|
|
- Fixed bugs and crashes in GUI keyboard navigation
|
2016-08-16 13:21:15 +02:00
|
|
|
|
2016-08-16 13:20:56 +02:00
|
|
|
# uae4arm-rpi
|
|
|
|
Port of uae4arm on Raspberry Pi
|
2015-05-14 15:18:43 +00:00
|
|
|
|
2016-05-20 19:25:26 +00:00
|
|
|
v0.5:
|
|
|
|
Merge of latest TomB version for Pandora.
|
|
|
|
Picasso fully working.
|
|
|
|
Keyboard management improved.
|
|
|
|
Add deadzone for joystick.
|
2016-05-14 18:57:55 +00:00
|
|
|
|
2015-10-17 16:36:56 +02:00
|
|
|
v0.4:
|
|
|
|
Merge of latest TomB version for Pandora.
|
|
|
|
Keep position between file selection
|
|
|
|
Joystick management improved.
|
2015-09-12 22:41:46 +02:00
|
|
|
|
2015-10-17 16:36:56 +02:00
|
|
|
v0.3:
|
2016-05-20 19:25:26 +00:00
|
|
|
Rework of dispmanX management (huge picasso improvement).
|
2015-10-17 16:36:56 +02:00
|
|
|
Add 4/3 shrink for 16/9 screen.
|
|
|
|
Alt key can now be used to switch between mouse and 2nd joystick.
|
2015-05-28 20:50:08 +00:00
|
|
|
|
2015-10-17 16:36:56 +02:00
|
|
|
v0.2:
|
|
|
|
Merge latest TomB improvements from Pandora version (Zorro3 memory, picasso...).
|
2015-05-23 11:16:41 +00:00
|
|
|
|
2015-10-17 16:36:56 +02:00
|
|
|
v0.1:
|
|
|
|
Use dispmanX for fast scaling and double buffering.
|
|
|
|
Enable hat usage on joystick.
|
|
|
|
Add Sony 6axis joystick workaround.
|
2015-08-06 10:45:19 +02:00
|
|
|
|
|
|
|
|
2016-02-03 19:46:32 +00:00
|
|
|
How to compile on Raspbian Jessie:
|
|
|
|
|
|
|
|
Install following packages:
|
|
|
|
|
2016-08-16 21:17:04 +02:00
|
|
|
sudo apt-get install libsdl-dev libguichan-dev libsdl-ttf2.0-dev libsdl-gfx1.2-dev libxml2-dev libflac-dev libmpg123-dev
|
2016-02-03 19:46:32 +00:00
|
|
|
|
2016-08-11 18:45:50 +02:00
|
|
|
Then for Raspberry Pi 3:
|
2016-02-03 19:46:32 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
|
2016-08-11 18:45:50 +02:00
|
|
|
For Raspberry Pi 2:
|
|
|
|
|
|
|
|
make PLATFORM=rpi2
|
|
|
|
|
2016-08-16 21:17:04 +02:00
|
|
|
For Raspberry Pi 1:
|
2016-02-03 19:46:32 +00:00
|
|
|
|
|
|
|
make PLATFORM=rpi1
|
2016-08-16 21:17:04 +02:00
|
|
|
|
|
|
|
For Generic SDL:
|
2016-02-03 19:46:32 +00:00
|
|
|
|
2016-08-16 21:17:04 +02:00
|
|
|
make PLATFORM=generic-sdl
|
2016-02-03 19:46:32 +00:00
|
|
|
|
|
|
|
How to compile on Raspbian Whezzy:
|
|
|
|
|
|
|
|
You need to install same packages as Jessie (see above)
|
|
|
|
and a more updated gcc (otherwise alter Makefile).
|
|
|
|
In order to do this enter the following in command line:
|
|
|
|
|
|
|
|
sudo apt-get install g++-4.8
|
|
|
|
|
2015-08-06 10:45:19 +02:00
|
|
|
|
2015-10-17 16:36:56 +02:00
|
|
|
Then for Raspberry Pi 2:
|
|
|
|
|
|
|
|
make CXX=g++-4.8
|
|
|
|
|
|
|
|
Or for Raspberry Pi 1:
|
|
|
|
|
|
|
|
make PLATFORM=rpi1 CXX=g++-4.8
|
2015-08-06 10:45:19 +02:00
|
|
|
|