Example #1
0
/**
   unsigned int DRV_UART2_WriteBuffer( const uint8_t *buffer , const unsigned int bufLen )
*/
unsigned int DRV_UART2_WriteBuffer( const uint8_t *buffer , const unsigned int bufLen )
{
    return(UART2_WriteBuffer( buffer ,bufLen));
} 
Example #2
0
/*
                         Main application
 */
int main(void) {
    // initialize the device
    SYSTEM_Initialize();
    uint16_t portValue;
    char introduction[]="Here are some messages from PIC. \r\n";
    char append[4][3];
    uint8_t appendCount = 0;
    uint8_t uartBuffer[128];
    uint8_t i = 0;
    char currentCountAscii[16];
    uint8_t sLength = 0;
    uint8_t uartBytesWritten = 0;
    uint8_t* tempPtr;
    uint16_t tmrValue;
    //UART2_TRANSFER_STATUS status ;
    
    //intialize the Board Power VDD_Board
    IO_RB2_SetLow(); 
    
//    //Testing UART code
//    while(name[i] != '\0')
//    {
//        uartBuffer[i] = (uint8_t)name[i];
//        i++;
//    }
//    uartBuffer[i] = (uint8_t)name[i];
    /*
    IO_RB15_SetHigh();
    
    for(j = 0;j<10;j++)
    {
        while(!TMR2_GetElapsedThenClear())
        {
            //IO_RB8_SetHigh();
            IO_RB15_SetHigh();
        }
            
        while(!TMR2_GetElapsedThenClear())
        {
            //IO_RB8_SetLow();
            IO_RB15_SetLow();
        }
    TMR3_delay_ms(_XTAL_FREQ, 500);
       
    }
    IO_RB15_SetHigh();
     */

      
    memcpy((void*)append[0], (void*)"th",3);
    memcpy((void*)append[1], (void*)"st",3);
    memcpy((void*)append[2], (void*)"nd",3);
    memcpy((void*)append[3], (void*)"rd",3);
    
    
    while (1) {
        
        //IO_RB15_SetLow();
        
        // Add your application code
        // Read RB7
        //portValue = IO_RB7_GetValue();
        //if(portValue == 1)
        
        if(i == 0)
        {
            strcpy(uartBuffer, introduction);
            sLength = strlen(uartBuffer);
            i++;
            
        }else{      
         appendCount = i%10;
         if(appendCount > 3)
             appendCount = 0;
         sLength = sprintf(uartBuffer, "PIC %d%s Transmission\r\n", i,append[appendCount]);
         i++;
        }
        uartBytesWritten = 0;
        
        while(uartBytesWritten < sLength)
        {
            //status = UART2_TransferStatusGet ( ) ;
            if (!UART2_TransmitBufferIsFull())
            {
                tempPtr = uartBuffer + uartBytesWritten;
                uartBytesWritten += UART2_WriteBuffer(uartBuffer+uartBytesWritten, UART2_TransmitBufferSizeGet());
            }               
            UART2_TasksTransmit();
             
            
        }
        if(i==1)
            TMR3_delay_ms(_XTAL_FREQ, 3000); //delay just so I can see the first message
        //else
          //  TMR3_delay_ms(_XTAL_FREQ, 10);
        
    }

    return -1;
}