Rename Sequre_S60 folder to Sequre

This commit is contained in:
jonasius
2024-06-06 20:27:08 +02:00
parent 31ff398150
commit 6e53d85b32
78 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
#include "BSP.h"
#include "BSP_Power.h"
#include "Pins.h"
#include "QC3.h"
#include "Settings.h"
#include "USBPD.h"
#include "configuration.h"
void power_check() {
#ifdef POW_PD
// Cant start QC until either PD works or fails
if (!USBPowerDelivery::negotiationComplete()) {
return;
}
if (USBPowerDelivery::negotiationHasWorked()) {
return; // We are using PD
}
#endif
#ifdef POW_QC
QC_resync();
#endif
}
bool getIsPoweredByDCIN() { return false; }