Skip to content

Commit

Permalink
Increasing version to v6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
afska committed Jan 15, 2024
1 parent ce94a73 commit 69e8e77
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/LinkCable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
#define LINK_CABLE_BIT_GENERAL_PURPOSE_HIGH 15
#define LINK_CABLE_BARRIER asm volatile("" ::: "memory")

static volatile char LINK_CABLE_VERSION[] = "LinkCable/v6.0.3";
static volatile char LINK_CABLE_VERSION[] = "LinkCable/v6.1.0";

void LINK_CABLE_ISR_VBLANK();
void LINK_CABLE_ISR_SERIAL();
Expand Down
2 changes: 1 addition & 1 deletion lib/LinkCableMultiboot.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
return error(FAILURE_DURING_HANDSHAKE);

static volatile char LINK_CABLE_MULTIBOOT_VERSION[] =
"LinkCableMultiboot/v6.0.3";
"LinkCableMultiboot/v6.1.0";

const u8 LINK_CABLE_MULTIBOOT_CLIENT_IDS[] = {0b0010, 0b0100, 0b1000};

Expand Down
2 changes: 1 addition & 1 deletion lib/LinkGPIO.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
else \
REG &= ~(1 << BIT);

static volatile char LINK_GPIO_VERSION[] = "LinkGPIO/v6.0.3";
static volatile char LINK_GPIO_VERSION[] = "LinkGPIO/v6.1.0";

const u8 LINK_GPIO_DATA_BITS[] = {2, 3, 1, 0};
const u8 LINK_GPIO_DIRECTION_BITS[] = {6, 7, 5, 4};
Expand Down
2 changes: 1 addition & 1 deletion lib/LinkRawCable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
} \
}

static volatile char LINK_RAW_CABLE_VERSION[] = "LinkRawCable/v6.0.3";
static volatile char LINK_RAW_CABLE_VERSION[] = "LinkRawCable/v6.1.0";

class LinkRawCable {
public:
Expand Down
2 changes: 1 addition & 1 deletion lib/LinkRawWireless.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
#define LINK_RAW_WIRELESS_COMMAND_WAIT 0x27
#define LINK_RAW_WIRELESS_COMMAND_BYE 0x3d

static volatile char LINK_RAW_WIRELESS_VERSION[] = "LinkRawWireless/v6.0.3";
static volatile char LINK_RAW_WIRELESS_VERSION[] = "LinkRawWireless/v6.1.0";

const u16 LINK_RAW_WIRELESS_LOGIN_PARTS[] = {
0x494e, 0x494e, 0x544e, 0x544e, 0x4e45, 0x4e45, 0x4f44, 0x4f44, 0x8001};
Expand Down
2 changes: 1 addition & 1 deletion lib/LinkSPI.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#define LINK_SPI_BIT_GENERAL_PURPOSE_LOW 14
#define LINK_SPI_BIT_GENERAL_PURPOSE_HIGH 15

static volatile char LINK_SPI_VERSION[] = "LinkSPI/v6.0.3";
static volatile char LINK_SPI_VERSION[] = "LinkSPI/v6.1.0";

class LinkSPI {
public:
Expand Down
2 changes: 1 addition & 1 deletion lib/LinkUniversal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
#define LINK_UNIVERSAL_SERVE_WAIT_FRAMES 60
#define LINK_UNIVERSAL_SERVE_WAIT_FRAMES_RANDOM 30

static volatile char LINK_UNIVERSAL_VERSION[] = "LinkUniversal/v6.0.3";
static volatile char LINK_UNIVERSAL_VERSION[] = "LinkUniversal/v6.1.0";

void LINK_UNIVERSAL_ISR_VBLANK();
void LINK_UNIVERSAL_ISR_SERIAL();
Expand Down
2 changes: 1 addition & 1 deletion lib/LinkWireless.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
if (!reset()) \
return false;

static volatile char LINK_WIRELESS_VERSION[] = "LinkWireless/v6.0.3";
static volatile char LINK_WIRELESS_VERSION[] = "LinkWireless/v6.1.0";

void LINK_WIRELESS_ISR_VBLANK();
void LINK_WIRELESS_ISR_SERIAL();
Expand Down

0 comments on commit 69e8e77

Please sign in to comment.