Initial MatrixARM implementation
- Cleaned up Macro and USB callback naming - Added security jumper for automated reload (MCHCK based only) - Added additional LED position
This commit is contained in:
parent
c1f8a2c545
commit
d6345c307f
16 changed files with 706 additions and 54 deletions
|
@ -684,11 +684,28 @@ void usb_device_reload()
|
|||
{
|
||||
// MCHCK
|
||||
#if defined(_mk20dx128vlf5_)
|
||||
// This line must be exactly the same in the bootloader
|
||||
const uint8_t sys_reset_to_loader_magic[] = "\xff\x00\x7fRESET TO LOADER\x7f\x00\xff";
|
||||
for ( int pos = 0; pos < sizeof(sys_reset_to_loader_magic); pos++ )(&VBAT)[pos] = sys_reset_to_loader_magic[ pos ];
|
||||
|
||||
SOFTWARE_RESET();
|
||||
// MCHCK Kiibohd Variant
|
||||
// Check to see if PTA3 (has a pull-up) is connected to GND (usually via jumper)
|
||||
// Only allow reload if the jumper is present (security)
|
||||
GPIOA_PDDR &= ~(1<<3); // Input
|
||||
PORTA_PCR3 = PORT_PCR_PFE | PORT_PCR_MUX(1); // Internal pull-up
|
||||
|
||||
// Check for jumper
|
||||
if ( GPIOA_PDIR & (1<<3) )
|
||||
{
|
||||
print( NL );
|
||||
warn_print("Security jumper not present, cancelling firmware reload...");
|
||||
info_msg("Replace jumper on middle 2 pins, or manually press the firmware reload button.");
|
||||
}
|
||||
else
|
||||
{
|
||||
// This line must be exactly the same in the bootloader
|
||||
const uint8_t sys_reset_to_loader_magic[] = "\xff\x00\x7fRESET TO LOADER\x7f\x00\xff";
|
||||
for ( int pos = 0; pos < sizeof(sys_reset_to_loader_magic); pos++ )(&VBAT)[pos] = sys_reset_to_loader_magic[ pos ];
|
||||
SOFTWARE_RESET();
|
||||
}
|
||||
|
||||
// Teensy 3.0 and 3.1
|
||||
#else
|
||||
asm volatile("bkpt");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue