This commit is contained in:
Ben V. Brown
2022-07-01 17:54:59 +10:00
parent 7614a5b92b
commit 39b7fe1e45
2 changed files with 3 additions and 1 deletions

View File

@@ -29,6 +29,8 @@ void QC_DNegThree_Three() {
void QC_DM_PullDown() {
// Turn on pulldown on D-
gpio_set_mode(USB_DM_Pin, GPIO_INPUT_PD_MODE);
gpio_set_mode(QC_DM_LOW_Pin, GPIO_INPUT_PD_MODE);
gpio_set_mode(QC_DM_HIGH_Pin, GPIO_INPUT_PD_MODE);
}
void QC_DM_No_PullDown() {
// Turn off pulldown on d-

View File

@@ -53,6 +53,6 @@ void startPOWTask(void const *argument __unused) {
#else
(void)res;
#endif
// power_check();
power_check();
}
}