Skip to content

Commit

Permalink
Merge pull request #542 from Ralim/drop-inline
Browse files Browse the repository at this point in the history
Drop inline on QC as not required
  • Loading branch information
Ralim committed Dec 31, 2019
2 parents 0402b7b + e1a4418 commit 86d60da
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions workspace/TS100/Core/Src/hardware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,45 +93,45 @@ uint16_t getInputVoltageX10(uint16_t divisor, uint8_t sample) {
return sum * 4 / divisor;
}
#ifdef MODEL_TS80
inline void DPlusZero_Six() {
void DPlusZero_Six() {
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_3, GPIO_PIN_RESET); // pull down D+
}
inline void DNegZero_Six() {
void DNegZero_Six() {
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_10, GPIO_PIN_SET);
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_8, GPIO_PIN_RESET);
}
inline void DPlusThree_Three() {
void DPlusThree_Three() {
HAL_GPIO_WritePin(GPIOB, GPIO_PIN_3, GPIO_PIN_SET); // pull up D+
}
inline void DNegThree_Three() {
void DNegThree_Three() {
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_10, GPIO_PIN_SET);
HAL_GPIO_WritePin(GPIOA, GPIO_PIN_8, GPIO_PIN_SET);
}

inline void QC_Seek9V() {
void QC_Seek9V() {
DNegZero_Six();
DPlusThree_Three();
}
inline void QC_Seek12V() {
void QC_Seek12V() {
DNegZero_Six();
DPlusZero_Six();
}
inline void QC_Seek20V() {
void QC_Seek20V() {
DNegThree_Three();
DPlusThree_Three();
}
inline void QC_SeekContMode() {
void QC_SeekContMode() {
DNegThree_Three();
DPlusZero_Six();
}
inline void QC_SeekContPlus() {
void QC_SeekContPlus() {
QC_SeekContMode();
vTaskDelay(3);
QC_Seek20V();
vTaskDelay(1);
QC_SeekContMode();
}
inline void QC_SeekContNeg() {
void QC_SeekContNeg() {
QC_SeekContMode();
vTaskDelay(3);
QC_Seek12V();
Expand Down

0 comments on commit 86d60da

Please sign in to comment.