請問新版MCC又分Melody及Classic有何分別?
|
||||
---|---|---|---|---|
資深會員
|
大家好 如題 :
另外新專案為何只能選Classic? 謝謝.
發表於: 2022/3/18 9:10
|
|||
|
請問MPLAB X V5.45想要增加ASM的專案,但卻沒有MPASM的選項?
|
||||
---|---|---|---|---|
資深會員
|
大家好 :
如題,但在pligins已有Installed,很奇怪...該如何解決? 謝謝.
發表於: 2022/2/24 17:26
|
|||
|
Re: 請問error: (1098) conflicting declarations for variable "_Bubble_Sort"?
|
||||
---|---|---|---|---|
資深會員
|
Dear GodBlessU :
應該沒重複... 謝謝.
發表於: 2022/2/16 9:29
Edited by jlian on 2022年02月16日 09:48:57
|
|||
|
Re: 紀錄資料約120Mbytes(斷電記憶),如何解決?
|
||||
---|---|---|---|---|
資深會員
|
SPI Flash看適不適和...
發表於: 2022/1/10 10:16
|
|||
|
Re: 16f877要擴充6個74HC373執行48個LED
|
||||
---|---|---|---|---|
資深會員
|
1. 2F正解.
2. 初始RA0等等皆為0. 3. 你應該是使用RB0外部中斷,進入中斷後 : Var0=Tbable0[x0]; NOP(); //也許需要一些 RA0=1; NOP(); //也許需要一些 PORTC=Var0; NOP(); //也許需要一些 RA0=0; 如此依序點亮LED...
發表於: 2022/1/6 10:40
|
|||
|
Re: 請問MCC的Interrupt Driven會產生出code?
|
||||
---|---|---|---|---|
資深會員
|
Dear GodBlessU :
了解,因除了這樣之外,就沒了...跟UART或I2C差好多! 謝謝.
發表於: 2021/12/30 16:09
|
|||
|
Re: 在Microchip Developer Help中兩個Timer的範例寫在不同的地方...
|
||||
---|---|---|---|---|
資深會員
|
Dear AdamSyu :
1. Timer0 : void TMR0_ISR(void) { // clear the TMR0 interrupt flag PIR0bits.TMR0IF = 0; if(TMR0_InterruptHandler) { TMR0_InterruptHandler(); } // add your TMR0 interrupt custom code D2_LED_Toggle(); } //----------------------------------------------- 2.Timer1 : void main(void) { // initialize the device SYSTEM_Initialize(); TMR1_SetInterruptHandler (myTimerISR); //Define interrupt Handler // When using interrupts, you need to set the Global and Peripheral Interrupt Enable bits // Use the following macros to: // Enable the Global Interrupts INTERRUPT_GlobalInterruptEnable(); // Enable the Peripheral Interrupts INTERRUPT_PeripheralInterruptEnable(); // Disable the Global Interrupts //INTERRUPT_GlobalInterruptDisable(); // Disable the Peripheral Interrupts //INTERRUPT_PeripheralInterruptDisable(); while (1) { // Add your application code } } void myTimerISR(void){ D2_LED_Toggle(); } /** End of File */ //***************************************************** 就以上兩種... 謝謝.
發表於: 2021/12/30 13:11
|
|||
|
在Microchip Developer Help中兩個Timer的範例寫在不同的地方...
|
||||
---|---|---|---|---|
資深會員
|
Dear All :
1. code在Timer0中. 2.code在Timer1外. 用哪個寫比較好? 謝謝.
發表於: 2021/12/30 9:35
|
|||
|
Re: 請問:MCC設定PIN腳為輸出,但在Pin Module中的Analog為何還是打勾?不取消會有影響?
|
||||
---|---|---|---|---|
資深會員
|
Dear KevinLu :
所以照MCC產生的即可. 謝謝.
發表於: 2021/12/30 9:07
|
|||
|