2021/12 QFP100 Fix

2021/12 QFP100 fix
This commit is contained in:
jLynx 2022-04-07 09:20:37 +12:00 committed by GitHub
commit d2e185a1fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -212,6 +212,9 @@ static const portapack::cpld::Config& portapack_cpld_config() {
persistent_memory::set_config_cpld(2);
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]){
persistent_memory::set_config_cpld(0);
}
@ -415,8 +418,11 @@ bool init() {
audio::init(portapack_audio_codec());
if( !portapack::cpld::update_if_necessary(portapack_cpld_config()) ) {
shutdown_base();
return false;
// If using a "2021/12 QFP100", press and hold the left button while booting. Should only need to do once.
if (portapack::persistent_memory::config_cpld() != 3){
shutdown_base();
return false;
}
}
if( !hackrf::cpld::load_sram() ) {