• Pic® Basic


  • GetParity

    A library module for use withLibrary Manager by JohnGB. This module has been written by Tim Box (Tim on PDS forum). The library module is offered on an as-is basis with no warranty as to its effectiveness, operation or reliability. Users use it at their own risk.

    Adds a new command called GetParity

    Syntax

    Assignment Variable = GetParity (Variable)

    Overview

    Returns the parity of the Variable. 1 if parity is odd and 0 if parity is even.

    Operators

    Assignment Variable – A byte variable. Variable - a byte sized constant, or variable

    Code:
    Include "PROTON_4.INC"
    
        Dim ParityResult As Byte  
        Dim OutByte As Byte
    
        Symbol TX9D = TXSTA.0    ' 9th bit of transmit data. Can be parity bit.
        Symbol TX9 = TXSTA.6     ' 9-bit Transmit Enable
    
        TX9 = 1                  ' Enable 9 bit data  
    
        OutByte = 255
    
        ParityResult = GetParity OutByte
    
        TX9D = ParityResult      ' Load the 9th (parity) bit
    
        HRSOut OutByte
    
        Stop
    The example above will set up as 16f877 to transmit 9 bits of data setting bit 9 as the parity bit. Data is sent Parity Even

    Download module

    Download: Usart Tools Get Parity
  • Recent Activity

    teo-16018

    Microsoft security essentials blues

    Thread Starter: shantanu@india

    Hi, A strange thing happened just now.My Windows 7 Micrsoft Sercurity Essentials suddenly gave a warning that prplus.exe(Compiler) is a potential...

    teo Today, 19:23 Go to last post
    pic-ignorant-1162

    Proton Runtime Error

    Thread Starter: Paulcc

    I have proton running well on my laptop, but after installing it on my desktop, I get the following runtime error: "Runtime Error 217 at 000709FC" I...

    pic-ignorant Yesterday, 22:11 Go to last post
    David Barker-251

    UMC bootloader 18F46K22

    Thread Starter: shunt010

    Hi all. I am trying to build a UMC bootloader file for the 18F46K22, and it doesn't appear to work. It returns (in the error log) Error ...

    David Barker Today, 11:20 Go to last post
    barak-1433

    SPI mssp

    Thread Starter: picprotonguy

    Just ordered Digital to Analog IC MCP4822 with SPI interface and immediately opened proton manual. I'm very disappointed, it looks like Proton...

    barak Today, 16:06 Go to last post