Skip to content

Commit

Permalink
Cleanup for RetroCade 1.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgassett committed Sep 27, 2013
1 parent 1ff08f7 commit 6a2dc9b
Show file tree
Hide file tree
Showing 77 changed files with 22 additions and 41 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ build/linux/work/
build/linux/dist/*.tar.gz
build/linux/*.tgz
test-bin
*.iml
*.iml
*.rar
18 changes: 0 additions & 18 deletions hardware/zpuino/zpu/libraries/RetroCade/VolumeController.cpp

This file was deleted.

15 changes: 0 additions & 15 deletions hardware/zpuino/zpu/libraries/RetroCade/VolumeController.h

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ void RETROCADE::handleJoystick()
lcd.setCursor(0,0);
lcd.print("RetroCade Synth");
lcd.setCursor(0,1);
lcd.print("Version: 1.02");
lcd.print("Version: 1.1");
break;
default:
//return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ http://www.gadgetfactory.net
License: GPL
ChangeLog:
9/26/2013 Version 1.1
-Added SID Analog Filters!!!!!!!! Thanks to Alvie for writing the VHDL code.
-Added SidPlayer library to process SID files from smallFS and SD Cards. Thanks to Alvie for porting to the ZPUino.
1/9/2013 Version 1.02
-NoteOff fix from Lee O'D
Expand Down Expand Up @@ -86,7 +90,7 @@ ChangeLog:
#include "SmallFS.h"
#include <LiquidCrystal.h>
#include <SD.h>
#include "VolumeController.h"
//#include "VolumeController.h"
#include "ymplayer.h"
#include "modplayer.h"
#include "ramFS.h"
Expand All @@ -112,9 +116,9 @@ void setup(){
Serial.begin(115200);
Serial1.begin(31250);

for (input=0; input<8; input++) {
VolumeController.set(input, 255, 255);
}
// for (input=0; input<8; input++) {
// VolumeController.set(input, 255, 255);
// }
//Setup pins for RetroCade MegaWing
retrocade.setupMegaWing();

Expand Down Expand Up @@ -383,4 +387,4 @@ void loop(){
retrocade.handleJoystick();
retrocade.sidplayer.audiofill();
}


Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion hardware/zpuino/zpu/libraries/modplayer/modplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "modplayer.h"
#include <SD.h>
#include "ptplay.h"
#include "RetroCade.h"
//#include "RetroCade.h"

#define DEBUG

Expand Down
9 changes: 9 additions & 0 deletions hardware/zpuino/zpu/libraries/modplayer/retrocade_defs.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#ifndef LIB_RETROCADEDEFS_H_
#define LIB_RETROCADEDEFS_H_

enum kFileType {
SmallFSType = 0,
SDFSType = 1,
};

#endif // LIB_RETROCADEDEFS_H_

0 comments on commit 6a2dc9b

Please sign in to comment.