Displaying Videos and Images on 4Dsystems uOLED Serially


Closed Thread
Results 1 to 40 of 68

Hybrid View

  1. #1
    Join Date
    Oct 2010
    Posts
    413


    Did you find this post helpful? Yes | No

    Default Re: Displaying Videos and Images on 4Dsystems uOLED Serially

    thanks for your help,

    i will check it out.

  2. #2
    Join Date
    Oct 2010
    Posts
    413


    Did you find this post helpful? Yes | No

    Default Re: Displaying Videos and Images on 4Dsystems uOLED Serially

    i've been trying to use the interrupt commands but i get a lot of errors. I used both files

    INCLUDE "DT_INTS-14.bas" ' Base Interrupt System
    INCLUDE "ReEnterPBP.bas" ' Include if using PBP interrupts

    First error i get is that micro assembler does not support 16F628a, and it is asking to use the MPASM for compiling.

    then if i use the MPASM i get again a lot of error like the attached pic.

    i dont understand why it says that cannot filnd the pic16f628a.

    here is also my code


    Code:
    '****************************************************************
    '*  Name    : TAG NUMBER.BAS                                    *
    '*  Author  : LEONARDO BILALIS                                  *
    '*  Notice  : Copyright (c) 2011 [LEONARDOS BILALIS]            *
    '*          : All Rights Reserved                               *
    '*  Date    : 11/6/2011                                          *
    '*  Version : 1.0                                               *
    '*  Notes   : this program allows you to see the                *
    '*          : Number of the RFID tag                            * 
    '*          :                                                   *
    '****************************************************************
    @ DEVICE PIC16F628a      
    Include "MODEDEFS.BAS"
    INCLUDE "DT_INTS-14.bas"     ' Base Interrupt System
    INCLUDE "ReEnterPBP.bas"     ' Include if using PBP interrupts
    CMCON = 7
    ;-----------------------------------------------------------------
    LED   VAR  PORTB.3
      
    ASM
    INT_LIST  macro    ; IntSource,        Label,  Type, ResetFlag?
            INT_Handler   TMR1_INT,  _ToggleLED1,   PBP,  yes
        endm
        INT_CREATE               ; Creates the interrupt processor
    ENDASM
    
    T1CON = $31                ; Prescaler = 8, TMR1ON
    @ INT_ENABLE  TMR1_INT     ; enable Timer 1 interrupts
    ;-----------------------------------------------------------------
    
    DEFINE OSC 8	'Set oscillator in MHz 
    DEFINE LCD_DREG PORTB  'define port to LCD
    DEFINE LCD_DBIT 4      'RB4 RB5 RB6 RB7 to D4 D5 D6 D7 display
    DEFINE LCD_RSREG PORTA 'RS on porta
    DEFINE LCD_RSBIT 0     'RS on porta.0
    DEFINE LCD_EREG PORTA  'Enable on porta
    DEFINE LCD_EBIT 1      'Enable  porta.1
    DEFINE LCD_BITS 4      ' 
    DEFINE LCD_LINES 2     'lines 2
    PAUSE 200             ' Stop 200ms
    ;----------------------------------
    LCDOUT $FE,1           ' power lcd
    Lcdout $FE,1,4
    lcdout $FE, 1," Copyright 2011"
    lcdout $FE, $C0,"Leonardo Bilalis"
    ;----------------------------------
    
    pause 1000
    low led
    pause 500
    high led
    pause 500
    low led
    pause 500
    high led
    pause 500
    
    ' -----[ Variables ]-------------------------------------------------------
    
    buf	    VAR	byte [10]' RFID bytes buffer
    tagNum	VAR	Byte	 ' from EEPROM table
    idx	    VAR	Byte	 ' tag byte index
    char	VAR	Byte	 ' character from table
    
    Main:
    pause 500
    lcdout $FE,1," Please use your"
    lcdout $FE, $C0,"Personal RFIDTAG"
    pause 500
    SERIN2 portb.1, 84, [WAIT($02),Str buf\10]
    pause 1000
    LCDout $fe,1, "TAG ID:"
    lcdout $fe,$C0, "NO: ", str buf\10
    pause 5000
    goto main
    
    '---[TMR1 - interrupt handler]--------------------------------------------------
    ToggleLED1:
    TOGGLE LED
    @ INT_RETURN
    if you have any suggestion please let me know.

    thanks a lot for your help.
    Attached Images Attached Images  

  3. #3
    Join Date
    Nov 2003
    Location
    Wellton, U.S.A.
    Posts
    5,924


    Did you find this post helpful? Yes | No

    Default Re: Displaying Videos and Images on 4Dsystems uOLED Serially

    You must use MPASM with DT's interrupts.
    Then you will need to use MPASM type configs
    http://www.picbasic.co.uk/forum/showthread.php?t=543
    Dave
    Always wear safety glasses while programming.

  4. #4
    Join Date
    Oct 2010
    Posts
    413


    Did you find this post helpful? Yes | No

    Default Re: Displaying Videos and Images on 4Dsystems uOLED Serially

    thank you very much for you answer,

    i have used the MPASM and the following line

    device pic16F628, @ __config _INTRC_OSC_NOCLKOUT & _WDT_ON & _PWRTE_ON & _MCLRE_OFF & _BODEN_ON & _LVP_OFF & _CP_ALL & _DATA_CP_ON

    but i'm getting the same errors, could you help please?

  5. #5
    Join Date
    Oct 2010
    Posts
    413


    Did you find this post helpful? Yes | No

    Default Re: Displaying Videos and Images on 4Dsystems uOLED Serially

    i used the following config

    @ __config _INTRC_OSC_NOCLKOUT & _WDT_ON & _PWRTE_ON & _MCLRE_OFF & _BODEN_ON & _LVP_OFF & _CP_ALL & _DATA_CP_ON
    @device pic16F628a

    and now i get the following errors
    Attached Images Attached Images  

  6. #6
    Join Date
    Nov 2003
    Location
    Wellton, U.S.A.
    Posts
    5,924


    Did you find this post helpful? Yes | No

    Default Re: Displaying Videos and Images on 4Dsystems uOLED Serially

    Remove

    device pic16F628,
    Dave
    Always wear safety glasses while programming.

  7. #7
    Join Date
    Nov 2003
    Location
    Wellton, U.S.A.
    Posts
    5,924


    Did you find this post helpful? Yes | No

    Default Re: Displaying Videos and Images on 4Dsystems uOLED Serially

    Seems you edited while I was posting.
    now your answer is in the error message.
    read through till you come the the ADD part
    Dave
    Always wear safety glasses while programming.

  8. #8
    Join Date
    Oct 2010
    Posts
    413


    Did you find this post helpful? Yes | No

    Default Re: Displaying Videos and Images on 4Dsystems uOLED Serially

    hi Dave again,

    now i get the following errors.

    I dont want to disturb you more.

    I'm really sad to not understand what are these errors and why it does not work.

    regards

    Code:
    '****************************************************************
    '*  Name    : TAG NUMBER.BAS                                    *
    '*  Author  : LEONARDO BILALIS                                  *
    '*  Notice  : Copyright (c) 2011 [LEONARDOS BILALIS]            *
    '*          : All Rights Reserved                               *
    '*  Date    : 11/6/2011                                         *
    '*  Version : 1.0                                               *
    '*  Notes   : this program allows you to see the                *
    '*          : Number of the RFID tag                            * 
    '*          :                                                   *
    '****************************************************************
    @ __config _INTRC_OSC_NOCLKOUT & _WDT_ON & _PWRTE_ON & _MCLRE_OFF & _BODEN_ON & _LVP_OFF & _CP_ALL & _DATA_CP_ON
    
    Include "MODEDEFS.BAS"
    INCLUDE "DT_INTS-14.bas"     ' Base Interrupt System
    INCLUDE "ReEnterPBP.bas"     ' Include if using PBP interrupts
    CMCON = 7
    ;-----------------------------------------------------------------
    LED   VAR  PORTB.3
      
    ASM
    INT_LIST  macro    ; IntSource,        Label,  Type, ResetFlag?
            INT_Handler   TMR1_INT,  _ToggleLED1,   PBP,  yes
        endm
        INT_CREATE               ; Creates the interrupt processor
    ENDASM
    
    T1CON = $31                ; Prescaler = 8, TMR1ON
    @ INT_ENABLE  TMR1_INT     ; enable Timer 1 interrupts
    ;-----------------------------------------------------------------
    
    DEFINE OSC 8	'Set oscillator in MHz 
    DEFINE LCD_DREG PORTB  'define port to LCD
    DEFINE LCD_DBIT 4      'RB4 RB5 RB6 RB7 to D4 D5 D6 D7 display
    DEFINE LCD_RSREG PORTA 'RS on porta
    DEFINE LCD_RSBIT 0     'RS on porta.0
    DEFINE LCD_EREG PORTA  'Enable on porta
    DEFINE LCD_EBIT 1      'Enable  porta.1
    DEFINE LCD_BITS 4      ' 
    DEFINE LCD_LINES 2     'lines 2
    PAUSE 200             ' Stop 200ms
    ;----------------------------------
    LCDOUT $FE,1           ' power lcd
    Lcdout $FE,1,4
    lcdout $FE, 1," Copyright 2011"
    lcdout $FE, $C0,"Leonardo Bilalis"
    ;----------------------------------
    
    ' -----[ Variables ]-------------------------------------------------------
    
    buf	    VAR	byte [10]' RFID bytes buffer
    tagNum	VAR	Byte	 ' from EEPROM table
    idx	    VAR	Byte	 ' tag byte index
    char	VAR	Byte	 ' character from table
    
    Main:
    pause 500
    lcdout $FE,1," Please use your"
    lcdout $FE, $C0,"Personal RFIDTAG"
    pause 500
    SERIN2 portb.1, 84, [WAIT($02),Str buf\10]
    pause 1000
    LCDout $fe,1, "TAG ID:"
    lcdout $fe,$C0, "NO: ", str buf\10
    pause 5000
    goto main
    
    '---[TMR1 - interrupt handler]--------------------------------------------------
    ToggleLED1:
    TOGGLE led
    @ INT_RETURN
    Attached Images Attached Images  
    Last edited by astanapane; - 11th June 2011 at 17:13.

  9. #9
    Join Date
    Nov 2003
    Location
    Wellton, U.S.A.
    Posts
    5,924


    Did you find this post helpful? Yes | No

    Default Re: Displaying Videos and Images on 4Dsystems uOLED Serially

    I dont want to disturb you more
    No problem.

    Try changing the config line to
    @ __config _INTRC_OSC_NOCLKOUT & _WDT_ON & _PWRTE_ON & _MCLRE_OFF & _LVP_OFF & _CP_OFF
    and make sure the *.inc file is commented.
    Then add
    wsave VAR BYTE $70 SYSTEM
    in your VAR section
    Dave
    Always wear safety glasses while programming.

Members who have read this thread : 1

You do not have permission to view the list of names.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts