mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-05-18 06:18:17 +00:00
2021/12 QFP100 Fix
2021/12 QFP100 fix
This commit is contained in:
commit
d2e185a1fb
@ -212,6 +212,9 @@ static const portapack::cpld::Config& portapack_cpld_config() {
|
|||||||
persistent_memory::set_config_cpld(2);
|
persistent_memory::set_config_cpld(2);
|
||||||
return portapack::cpld::rev_20150901::config;
|
return portapack::cpld::rev_20150901::config;
|
||||||
}
|
}
|
||||||
|
if (switches_state[(size_t)ui::KeyEvent::Left]){
|
||||||
|
persistent_memory::set_config_cpld(3);
|
||||||
|
}
|
||||||
if (switches_state[(size_t)ui::KeyEvent::Select]){
|
if (switches_state[(size_t)ui::KeyEvent::Select]){
|
||||||
persistent_memory::set_config_cpld(0);
|
persistent_memory::set_config_cpld(0);
|
||||||
}
|
}
|
||||||
@ -415,8 +418,11 @@ bool init() {
|
|||||||
audio::init(portapack_audio_codec());
|
audio::init(portapack_audio_codec());
|
||||||
|
|
||||||
if( !portapack::cpld::update_if_necessary(portapack_cpld_config()) ) {
|
if( !portapack::cpld::update_if_necessary(portapack_cpld_config()) ) {
|
||||||
shutdown_base();
|
// If using a "2021/12 QFP100", press and hold the left button while booting. Should only need to do once.
|
||||||
return false;
|
if (portapack::persistent_memory::config_cpld() != 3){
|
||||||
|
shutdown_base();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if( !hackrf::cpld::load_sram() ) {
|
if( !hackrf::cpld::load_sram() ) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user