~rabbits/uxn-playdate

Stack Ordinator, written in ANSI C(Playdate)
Match audio-device to upstream implementation
Fix sample looping
Add sample xfading

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~rabbits/uxn-playdate
read/write
git@git.sr.ht:~rabbits/uxn-playdate

You can also use your local clone with git send-email.

#Varvara for the Playdate

The Playdate is a monochromatic handheld console, programmable in C. This repo can be used as an example implementation of the Varvara specs.

#Dependencies

  • The Playdate SDK.
  • arm-none-eabi-gcc and clang from your distro's package repositories.
sudo apt-get install gcc-arm-none-eabi clang # Debian
sudo pacman -Sy gcc-arm-none-eabi arm-none-eabi-newlib clang #Arch

#Build

Set PLAYDATE_SDK in your environment to the location of the PlaydateSDK directory, then run the Makefile:

export PLAYDATE_SDK_PATH=/home/neauoire/Documents/playdate/PlaydateSDK-1.13.1
make

Note: PLAYDATE_SDK must be an absolute path, otherwise you may get hard-to-diagnose errors from the SDK's build system.

#Test in simulator

The run target launches the Playdate simulator with the compiled output.

make run