please dont rip this site

A simple RTOS for microcontrollers based upon concepts of FreeRTOS

This file is part of SimpleRTOS2

by Isaac Marino Bavaresco

This is file "SimpleRTOS\SerialPIC18.c"

/*============================================================================*/
/*
    FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd.
    All rights reserved

    VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.

    ***************************************************************************
     *                                                                       *
     *    FreeRTOS provides completely free yet professionally developed,    *
     *    robust, strictly quality controlled, supported, and cross          *
     *    platform software that has become a de facto standard.             *
     *                                                                       *
     *    Help yourself get started quickly and support the FreeRTOS         *
     *    project by purchasing a FreeRTOS tutorial book, reference          *
     *    manual, or both from: http://www.FreeRTOS.org/Documentation        *
     *                                                                       *
     *    Thank you!                                                         *
     *                                                                       *
    ***************************************************************************

    This file is part of the FreeRTOS distribution.

    FreeRTOS is free software; you can redistribute it and/or modify it under
    the terms of the GNU General Public License (version 2) as published by the
    Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.

    >>! NOTE: The modification to the GPL is included to allow you to distribute
    >>! a combined work that includes FreeRTOS without being obliged to provide
    >>! the source code for proprietary components outside of the FreeRTOS
    >>! kernel.

    FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    FOR A PARTICULAR PURPOSE.  Full license text is available from the following
    link: http://www.freertos.org/a00114.html

    1 tab == 4 spaces!

    ***************************************************************************
     *                                                                       *
     *    Having a problem?  Start by reading the FAQ "My application does   *
     *    not run, what could be wrong?"                                     *
     *                                                                       *
     *    http://www.FreeRTOS.org/FAQHelp.html                               *
     *                                                                       *
    ***************************************************************************

    http://www.FreeRTOS.org - Documentation, books, training, latest versions,
    license and Real Time Engineers Ltd. contact details.

    http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
    including FreeRTOS+Trace - an indispensable productivity tool, a DOS
    compatible FAT file system, and our tiny thread aware UDP/IP stack.

    http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High
    Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS
    licenses offer ticketed support, indemnification and middleware.

    http://www.SafeRTOS.com - High Integrity Systems also provide a safety
    engineered and independently SIL3 certified version for use in safety and
    mission critical applications that require provable dependability.

    1 tab == 4 spaces!
*/
/*============================================================================*/

/*============================================================================*/
/* BASIC INTERRUPT DRIVEN SERIAL PORT DRIVER.

NOTE:  This driver is primarily to test the scheduler functionality.  It does
not effectively use the buffers or DMA and is therefore not intended to be
an example of an efficient driver. */
/*============================================================================*/
/*============================================================================*/
/*============================================================================*/
/*============================================================================*/
/*

Note: This file was severely modified from the original FreeRTOS version.

*/
/*============================================================================*/
/*============================================================================*/
/*============================================================================*/
/*============================================================================*/
#if         defined __XC8__ || defined __18CXX
/*============================================================================*/
/* Standard include file. */
#include <stdlib.h>

/*============================================================================*/

/* Scheduler include files. */
#include "Portable.h"
#include "Queue.h"
#include "PortPIC18Internals.h"
//@@@@#include <p18cxxx.h>

/*============================================================================*/

/* Demo app include files. */
#include "SerialPIC18.h"

/*============================================================================*/

/* The queues used to communicate between tasks and ISR's. */
#define QUEUE_LENGTH        32
/*static*/ queue_t          QueuesRX[2];
/*static*/ unsigned char    BuffersRX[2][QUEUE_LENGTH];
/*static*/ queue_t          QueuesTX[2];
/*static*/ unsigned char    BuffersTX[2][QUEUE_LENGTH];

/*============================================================================*/
int SerialPortInitMinimal( unsigned int port, unsigned long ulWantedBaud )
    {
    unsigned short  usBRG;

    int             index;

    if( port == 1 )
        index   = 0;
    else if( port == 2 )
        index   = 1;
    else
        return 0;

    /* Create the queues used by the com test task. */
    QueueInit( &QueuesRX[index], sizeof( signed char ), QUEUE_LENGTH, (void*)&BuffersRX, QUEUE_SWITCH_IN_ISR );
    QueueInit( &QueuesTX[index], sizeof( signed char ), QUEUE_LENGTH, (void*)&BuffersTX, QUEUE_NORMAL );

    /* Configure the UART and interrupts. */
    usBRG                   = 10000000 / ( 16.0 * ulWantedBaud - 0.5 );

    if( port == 1 )
        {
        SPBRG1              = usBRG;
        SPBRGH1             = usBRG >> 8;

        LATCbits.LATC6      = 1;

        TRISCbits.TRISC7    = 1;
        TRISCbits.TRISC6    = 0;

        IPR1bits.RC1IP      = 0;
        PIR1bits.RC1IF      = 0;
        IPR1bits.TX1IP      = 0;
        PIR1bits.TX1IF      = 0;

        PIE1bits.RC1IE      = 1;
        PIE1bits.TX1IE      = 0;

        TXSTA1              = 0x20;
        RCSTA1              = 0x90;
        }
    else
        {
        SPBRG2              = usBRG;
        SPBRGH2             = usBRG >> 8;

        LATCbits.LATC6      = 1;

        TRISGbits.TRISG2    = 1;
        TRISCbits.TRISC6    = 0;

        IPR3bits.RC2IP      = 0;
        PIR3bits.RC2IF      = 0;
        IPR3bits.TX2IP      = 0;
        PIR3bits.TX2IF      = 0;

        PIE3bits.RC2IE      = 1;
        PIE3bits.TX2IE      = 0;

        TXSTA2              = 0x20;
        RCSTA2              = 0x90;
        }
    return 1;
    }

/*============================================================================*/

int SerialReceive( unsigned int port, tickcount_t TimeToWait )
    {
    unsigned char   c;
    int             index;

    if( port != 1 && port != 2 )
        return -2;
    index   = port == 2 ? 1 : 0;

    if( QueueRead( &QueuesRX[index], &c, TimeToWait ))
        return (unsigned int)c;
    else
        return -1;
    }

/*============================================================================*/

int SerialWaitForTXCompletion( unsigned int port, tickcount_t TimeToWait )
    {
    return 0;
    }

/*============================================================================*/

int SerialTransmit( unsigned int port, signed char c, tickcount_t TimeToWait )
    {
    int index;

    if( port != 1 && port != 2 )
        return -2;
    index   = port == 2 ? 1 : 0;

    /* Return false if after the block time there is no room on the Tx queue. */
    if( QueueWrite( &QueuesTX[index], &c, TimeToWait ) == 0 )
        return 0;
    else
        {
/*
        if( index )
            IEC1bits.U2TXIE = 1;
        else
*/
            PIE1bits.TX1IE  = 1;

        return 1;
        }
    return 0;
    }

/*============================================================================*/

void U1RXHandler( void )
    {
    int         MustSwitch  = 0;
    /* Declared static to minimise stack use. */
    static char cChar;

    /* Are any Rx interrupts pending? */
    while( PIR1bits.RC1IF == 1 )
        {
        /* Retrieve the received character and place it in the queue of
        received characters. */
        cChar = RCREG1;
        if( QueueWriteFromISR( &QueuesRX[0], &cChar ) > 1 )
            MustSwitch  = 1;
        PIR1bits.RC1IF  = 0;
        }

    if( MustSwitch )
        HigherPriorityAwakened();
    }
/*============================================================================*/

void U1TXHandler( void )
    {
    int         MustSwitch  = 0;
    /* Declared static to minimise stack use. */
    static char cChar;

    /* Are any Tx interrupts pending? */
    while( PIR1bits.TX1IF == 1 )
        {
        int Result;

        Result = QueueReadFromISR( &QueuesTX[0], &cChar );
        if( Result > 0 )
            {
            /* Send the next character queued for Tx. */
            TXREG1 = cChar;
            if( Result > 1 )
                MustSwitch  = 1;
            }
        else
            {
            /* Queue empty, nothing to send. */
            PIR1bits.TX1IF  = 0;
            PIE1bits.TX1IE  = 0;
            break;
            }
        }

    if( MustSwitch )
        HigherPriorityAwakened();
    }
/*============================================================================*/
#if 0
#if         defined __DEBUG

void U2Handler( void )
    {
    int         MustSwitch  = 0;
    int         Result;
    /* Declared static to minimise stack use. */
    static char cChar;

    /* Are any Rx interrupts pending? */
    if( IFS1bits.U2RXIF == 1 )
        {
        while( U2STAbits.URXDA )
            {
            /* Retrieve the received character and place it in the queue of
            received characters. */
            cChar = U2RXREG;
            if( QueueWriteFromISR( &QueuesRX[0], &cChar ) > 1 )
                MustSwitch  = 1;
            }
        IFS1bits.U2RXIF = 0;
        }

    /* Are any Tx interrupts pending? */
    if( IFS1bits.U2TXIF == 1 )
        {
        while( ( U2STAbits.UTXBF ) == 0 )
            {
            Result = QueueReadFromISR( &QueuesTX[0], &cChar );
            if( Result > 0)
                {
                /* Send the next character queued for Tx. */
                U2TXREG = cChar;
                if( Result > 1 )
                    MustSwitch  = 1;
                }
            else
                {
                /* Queue empty, nothing to send. */
                IFS1bits.U2TXIF = 0;
                IEC1bits.U2TXIE = 0;
                break;
                }
            }
        IFS1bits.U2TXIF = 0;
        }

    if( MustSwitch )
        HigherPriorityAwakened();
    }

#endif  /*  defined __DEBUG */
#endif
/*============================================================================*/
#if         defined __DEBUG

static const char   Packet[]    = { 'v', 's', 's', 'k', 'd', 'v', 'v', 'k', 'v', 's', 'k', 'd' };

/*
static const char   Packet[]    = { 0x02, 0x00, 0x01, 0x21, 0x20 };
*/

static int          ip          = 0;

void T2Handler( void )
    {
    int     MustSwitch  = 0;
    char    c           = Packet[ip];

    if( ++ip >= sizeof Packet )
        ip  = 0;

    PIR1bits.TMR2IF = 0;

    if( QueueWriteFromISR( &QueuesRX[0], &c ) > 1 )
        MustSwitch  = 1;
    if( QueueReadFromISR( &QueuesTX[0], &c ) > 1 )
        MustSwitch  = 1;

    if( MustSwitch )
        HigherPriorityAwakened();
    }

#endif  /*  defined __DEBUG */

/*============================================================================*/
#endif  /*  defined __XC8__ || defined __18CXX */
/*============================================================================*/

file: /Techref/member/IMB-yahoo-J86/SerialPIC18.c.htm, 13KB, , updated: 2016/1/14 20:46, local time: 2024/3/18 23:38, owner: IMB-yahoo-J86,
TOP NEW HELP FIND: 
54.166.234.171:LOG IN

 ©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://www.piclist.com/Techref/member/IMB-yahoo-J86/SerialPIC18.c.htm"> A simple RTOS for microcontrollers based upon concepts of FreeRTOS</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?