Another minor documentation error

Beta Testing discussion on mikroPascal PRO for PIC32.
Post Reply
Author
Message
LGR
Posts: 3204
Joined: 23 Sep 2004 20:07

Another minor documentation error

#1 Post by LGR » 21 Jul 2011 22:33

In the GLCD library, we have:

Code: Select all

// Glcd module connections
var GLCD_D7 : sbit at RD3_bit;
    GLCD_D6 : sbit at RD2_bit;
    GLCD_D5 : sbit at RD1_bit;
    GLCD_D4 : sbit at RD0_bit;
    GLCD_D3 : sbit at RB3_bit;
    GLCD_D2 : sbit at RB2_bit;
    GLCD_D1 : sbit at RB1_bit;
    GLCD_D0 : sbit at RB0_bit;
    GLCD_D7_Direction : sbit at TRISD3_bit;
    GLCD_D6_Direction : sbit at TRISD2_bit;
    GLCD_D5_Direction : sbit at TRISD1_bit;
    GLCD_D4_Direction : sbit at TRISD0_bit;
    GLCD_D3_Direction : sbit at TRISB3_bit;
    GLCD_D2_Direction : sbit at TRISB2_bit;
    GLCD_D1_Direction : sbit at TRISB1_bit;
    GLCD_D0_Direction : sbit at TRISB0_bit;
    GLCD_CS2 : sbit at LATB5_bit;
    GLCD_RS  : sbit at LATF0_bit;
    GLCD_RW  : sbit at LATF1_bit;
    GLCD_EN  : sbit at LATF4_bit;
    GLCD_RST : sbit at LATF5_bit;

var GLCD_CS1_Direction : sbit at TRISB4_bit;
    GLCD_CS2_Direction : sbit at TRISB5_bit;
    GLCD_RS_Direction  : sbit at TRISF0_bit;
    GLCD_RW_Direction  : sbit at TRISF1_bit;
    GLCD_EN_Direction  : sbit at TRISF4_bit;
    GLCD_RST_Direction : sbit at TRISF5_bit;
// End Glcd module connections
It appears that the line is missing:

Code: Select all

GLCD_CS1 : sbit at LATB4_bit;
If you know what you're doing, you're not learning anything.

User avatar
filip
mikroElektronika team
Posts: 11874
Joined: 25 Jan 2008 09:56

Re: Another minor documentation error

#2 Post by filip » 26 Jul 2011 15:09

Hi,

Thank you for your report, we will fix this.

Regards,
Filip.

Post Reply

Return to “mikroPascal PRO for PIC32 Beta Testing”