Almost done with PCB 2.6v. I decided to change the reference designators so it's easier to find components. But PADS randomly swapped a bunch of parts. I wasted HOURS fixing it! :( Anyway, it's almost done, and the new reference designators are going to be nice..... maybe not totally worth it......
This commit is contained in:
parent
f0a4472f27
commit
7e1addf952
3 changed files with 3 additions and 3 deletions
Binary file not shown.
Binary file not shown.
|
@ -937,7 +937,7 @@ setFreq(vfoAFrequency);
|
|||
|
||||
|
||||
|
||||
setGainPot(20, 20);
|
||||
setGainPot(128, 128);
|
||||
|
||||
//testing Uart
|
||||
configUartPeripheral();
|
||||
|
@ -1816,7 +1816,7 @@ void TIM_Try(void)
|
|||
|
||||
TimHandle.Instance = TIM3;
|
||||
TimHandle.Init.CounterMode = TIM_COUNTERMODE_UP;
|
||||
TimHandle.Init.Period = 1050;
|
||||
TimHandle.Init.Period = 800; //was 1050. Can't remember what that works out to. I think 44kHz or so
|
||||
TimHandle.Init.Prescaler = uwPrescalerValue;
|
||||
TimHandle.Init.ClockDivision = 0;
|
||||
HAL_TIM_Base_Init(&TimHandle);
|
||||
|
@ -1838,7 +1838,7 @@ HAL_NVIC_EnableIRQ(TIMx_IRQn);
|
|||
__TIM4_CLK_ENABLE();
|
||||
TimHandle4.Instance = TIM4;
|
||||
TimHandle4.Init.CounterMode = TIM_COUNTERMODE_UP;
|
||||
TimHandle4.Init.Period = 1050;
|
||||
TimHandle4.Init.Period = 800; //was 1050
|
||||
TimHandle4.Init.Prescaler = uwPrescalerValue;
|
||||
TimHandle4.Init.ClockDivision = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue