- /*---------------------------------------------------------------------------------------------------------*/
- /* */
- /* SPDX-License-Identifier: Apache-2.0 */
- /* Copyright(c) 2020 Nuvoton Technology Corp. All rights reserved. */
- /* */
- /*---------------------------------------------------------------------------------------------------------*/
- #include "ml51_sdcc.h"
- /**
- * [url=home.php?mod=space&uid=247401]@brief[/url] I2C0 master demo.
- * @param None
- * [url=home.php?mod=space&uid=266161]@return[/url] None
- * [url=home.php?mod=space&uid=1543424]@Details[/url] please confirm enable LXT and check work stable if use LXT as WKT clock source.
- */
- __xdata __at 0x100 unsigned char RxDatabuffer[100];
- __xdata __at 0x263 unsigned charfinalbuffer;
- unsigned char i;
- BIT pdmaflag ;
- void PDMA1_ISR (void) __interrupt (21) // Vector [url=home.php?mod=space&uid=72445]@[/url] 0xAB
- {
- PDMA_Close(PDMA1);
- clr_DMA1TSR_FDONE;
- clr_DMA1TSR_HDONE;
- pdmaflag = 1;
- }
- void main (void)
- {
- /* UART0 settting for printf function */
- Enable_UART0_VCOM_printf();
- printf ("\n Test start ...");
- for(i=0;i<100;i++)
- {
- RxDatabuffer[i]=i;
- }
- /* Define PMDA function as memory to memory, and setting base address */
- PDMA_Open(PDMA1,XRAM_XRAM,0x100,0x80);
- /* Define destination memory address */
- PDMA_MTM_DestinationAddress(PDMA1,0x200);
- /* Define interrupt after full transfer */
- PDMA_Interrupt_Enable(PDMA1,PDMAFULLINT);
- ENABLE_GLOBAL_INTERRUPT;
- PDMA_Run(PDMA1);
- while(!pdmaflag);
- printf (" \n PDMA Tranfer Finish! ");
- while(1);
- }
|