README update

This commit is contained in:
Will Toohey
2017-12-10 01:03:57 +10:00
parent 7e5c449955
commit 33a69dcf9a
4 changed files with 10 additions and 3 deletions
+7 -1
View File
@@ -75,7 +75,13 @@ command_response_t HandleConfig(uint8_t* buffer) {
switch(command->command) {
case VERSION:
command->data.version.version = FIRMWARE_VERSION;
command->data.version.serial = 0xDEAD; // TODO set properly later
#ifdef SOFT_LEDS
// rev 4
command->data.version.board = 0x4;
#else
// rev 6
command->data.version.board = 0x6;
#endif
return RESPOND;
case GETCONFIG:
memcpy(&command->data.config, &sdvxConfig, CONFIG_SIZE);
+1 -1
View File
@@ -52,7 +52,7 @@ typedef struct {
typedef struct {
uint16_t version;
uint16_t serial;
uint16_t board;
} version_t;
typedef enum {
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 KiB

After

Width:  |  Height:  |  Size: 144 KiB

+2 -1
View File
@@ -5,7 +5,8 @@ A tiny controller for K-Shoot MANIA/Sound Voltex or other similar games
![Pocket Voltex](ProductShot.jpg)
## Documentation
[DIY Kit assembly](Docs/Assembly.md)
[(Old version)DIY Kit assembly](Docs/Assembly.md)
New kit assembly docs coming shortly - like old, but no LEDs or encoders to solder.
[Controller configuration](Docs/Configuration.md)