

Mais après, peut-être que ceux qui ont le verrouillage retentent 1 ou 2 fois aussi, avant de laisser tomber.
int extapp_getKey(bool allowSuspend, bool *alphaWasActive) {
int key = -1;
size_t t1 = Ion::Timing::millis();
for (;;) {
int timeout = 10000;
if(alphaWasActive) {
*alphaWasActive = Ion::Events::isAlphaActive();
}
Ion::Events::Event event = Ion::Events::getEvent(&timeout);
reloadTitleBar();
if (event == Ion::Events::None) {
size_t t2 = Ion::Timing::millis();
if (t2 - t1 > 2 * TICKS_PER_MINUTE) {
event = Ion::Events::OnOff;
}
} else {
t1 = Ion::Timing::millis();
}
if (event == Ion::Events::USBPlug) {
// statusline(0,0);
// KDIonContext::sharedContext()->pushRectUniform(rect,33333);
if (Ion::USB::isPlugged()) {
if (GlobalPreferences::sharedGlobalPreferences()->isInExamMode()) {
Ion::LED::setColor(KDColorBlack);
Ion::LED::updateColorWithPlugAndCharge();
GlobalPreferences::sharedGlobalPreferences()->setExamMode(GlobalPreferences::ExamMode::Off);
// displayExamModePopUp(false);
} else {
Ion::USB::enable();
}
Ion::Backlight::setBrightness(GlobalPreferences::sharedGlobalPreferences()->brightnessLevel());
} else {
Ion::USB::disable();
}
}
if (event == Ion::Events::USBEnumeration || event == Ion::Events::USBPlug || event == Ion::Events::BatteryCharging) {
Ion::LED::updateColorWithPlugAndCharge();
}
if (event == Ion::Events::USBEnumeration
) {
auto ctx=KDIonContext::sharedContext();
KDRect save=ctx->m_clippingRect;
KDPoint o=ctx->m_origin;
ctx->setClippingRect(KDRect(0,0,320,240));
ctx->setOrigin(KDPoint(0,18));
KDRect rect(90,63,140,75);
KDIonContext::sharedContext()->pushRectUniform(rect,64934 /* Palette::YellowDark*/);
if (Ion::USB::isPlugged()) {
/* Just after a software update, the battery timer does not have time to
* fire before the calculator enters DFU mode. As the DFU mode blocks the
* event loop, we update the battery state "manually" here.
* We do it before switching to USB application to redraw the battery
* pictogram. */
// updateBatteryState();
KDIonContext::sharedContext()->pushRectUniform(rect,22222);
auto ctx=KDIonContext::sharedContext();
int y=58;
ctx->drawString("Connecte ! ", KDPoint(100,y), KDFont::LargeFont, 65535, 0);
y+=18;
ctx->drawString(" DFU mode ", KDPoint(100,y), KDFont::LargeFont, 65535, 0);
y+=18;
ctx->drawString("Back quitte", KDPoint(100,y), KDFont::LargeFont, 65535, 0);
y-=18;
Ion::USB::DFU();
KDIonContext::sharedContext()->pushRectUniform(rect,44444);
ctx->drawString("Deconnecte!", KDPoint(100,y), KDFont::LargeFont, 65535, 0);
// Update LED when exiting DFU mode
Ion::LED::updateColorWithPlugAndCharge();
} else {
/* Sometimes, the device gets an ENUMDNE interrupts when being unplugged
* from a non-USB communicating host (e.g. a USB charger). The interrupt
* must me cleared: if not the next enumeration attempts will not be
* detected. */
Ion::USB::clearEnumerationInterrupt();
}
}
if (event.isKeyboardEvent()) {
Ion::Backlight::setBrightness(GlobalPreferences::sharedGlobalPreferences()->brightnessLevel());
}
if (event == Ion::Events::Shift || event == Ion::Events::Alpha) {
continue;
}
if (event.isKeyboardEvent()) {
key = static_cast<uint8_t>(event);
if (key == 17 || key == 4 || key == 5 || key == 52) {
extapp_resetKeyboard();
}
if (allowSuspend && (key == 7 || key == 8)) { // power
Ion::Power::suspend(true);
extapp_pushRectUniform(0, 0, 320, 240, 65535);
Ion::Backlight::setBrightness(GlobalPreferences::sharedGlobalPreferences()->brightnessLevel());
reloadTitleBar();
}
break;
}
}
return translated_keys[key];
}
Downloading element to address = 0x90200000, size = 8089600
Erase [=========================] 100% 8089600 bytes
Erase done.
Download [=================== ] 77% 6287360 bytesdfu-util: Error during download get_status
dfu-util -i0 -a0 -D epsilon.dfu #-s 0x90000000
dfu-util -i 0 -a 0 -s 0x90200000:force -D apps.tar -R
parisse wrote:J'espere bien que les traitres qui font upgrader leurs eleves vers la 16.3 vont le regretter
Adriweb wrote:parisse wrote:J'espere bien que les traitres qui font upgrader leurs eleves vers la 16.3 vont le regretter
Je suppose qu'à l'étranger, la version minimale acceptable en exam va etre la 16.x à un moment donné, et qui sait si ca ne va pas finir par arriver en France aussi...
Donc il va bien falloir que les profs disent aux élèves de mettre à jour sinon ils ne pourront meme plus utiliser leurs calculatrices en exam !
Du coup il faudrait contacter les autorités en question pour faire accepter aussi une version spécifique donnée de Khi, par exemple. Mais bon, en France ca parait deja difficile, alors ailleurs, ca ne se fera jamais...
parisse wrote:
J'espere bien que les traitres qui font upgrader leurs eleves vers la 16.3 vont le regretter
cent20 wrote:Il n’y a pas de traitre mes des utilisateurs pragmatiques.
- Comment je fais pour installer en 3 clics la version 15.5 ?
critor wrote:cent20 wrote:Il n’y a pas de traitre mes des utilisateurs pragmatiques.
- Comment je fais pour installer en 3 clics la version 15.5 ?
C'est là que j'ai eu beaucoup de mal à comprendre tes choix, même si je ne suis pas intervenu jusqu'à présent.
Tu voulais les fonctionnalités 15.5 installables en 2 clics ? Ben c'était simple, tu avais Omega : https://getomega.dev/install
Users browsing this forum: ClaudeBot [spider] and 24 guests