第一次焊接太激动了,弄多了焊锡膏,导致USB TypeC接口弄坏了。
热风枪吹下来单片机和电阻电容,焊接到新的一块板子上,成功点亮。
接口按照PIC KIT4做的。
怕再弄坏,先简单焊接了USB需要的两个5.1K欧电阻,以及3.3V稳压芯片,以及LED点灯电路。
使用MCC写了个简单的测试程序。
int main(void)
{
SYSTEM_Initialize();
// If using interrupts in PIC18 High/Low Priority Mode you need to enable the Global High and Low Interrupts
// If using interrupts in PIC Mid-Range Compatibility Mode you need to enable the Global Interrupts
// Use the following macros to:
// Enable the Global Interrupts
//INTERRUPT_GlobalInterruptEnable();
// Disable the Global Interrupts
//INTERRUPT_GlobalInterruptDisable();
while(1)
{
LED_Toggle();
__delay_ms(500);
}
}
点灯成功,接下来把其他的元件焊接上。
|