Weird SPI interface: VIH to VIHH for CS?


Results 1 to 10 of 10

Threaded View

  1. #6
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    I wouldn't leave a pin floating myself, mainly SHDN. On the other hand, by their specs, they says there's a "Smart Pull-Up" inside... how smart it is... who knows

    Your code seems to be ok to me, but you still haven't added the LOW CS in there... not sur if this could help though...

    PS: Make sure your DEFINEs are all in UPPERCASE.

    Do you have a PICKIT 2? in this case you could monitor what happen on CS/CLK/SDI and SDO

    Do you have a complete schematic of your thing?

    EDIT: Try this one
    Code:
            define OSC 8
            
            cmcon=7
            res var byte
            Command var WORD
            CS var porta.2 'CS
            CLK var porta.3 'CLK
            SI var porta.4 'SI
            LED var porta.1 'LED
            
            high CS
            LOW CLK
            high LED
            pause 500
            low LED
            pause 500
            high LED
            
            res=24
    
    repeatit:
            command.highbyte=0 ' Volatile Wiper 0
            comand.lowbyte=res
            low CS
            shiftout SI,CLK,1,[command\16]
            high CS
            
            pause 10
            
            Command.HighByte=%00010000  ' Volatile Wiper 1    
            low CS
            shiftout SI,CLK,1,[Command\16]
            high CS
            
            pause 500
            res=res+32
            
            goto repeatit
    Last edited by mister_e; - 29th January 2009 at 06:45.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

Similar Threads

  1. Master SPI interface to LCD/OLED??
    By jellis00 in forum mel PIC BASIC Pro
    Replies: 7
    Last Post: - 19th September 2009, 23:44
  2. need help for APR6008 SPI interface
    By vu2iia in forum mel PIC BASIC Pro
    Replies: 5
    Last Post: - 30th June 2009, 03:19
  3. 16-bit SPI problem
    By shaiqbashir in forum mel PIC BASIC Pro
    Replies: 3
    Last Post: - 19th June 2008, 15:42
  4. Help with MicroMag3 SPI interface to PIC
    By kaan in forum mel PIC BASIC Pro
    Replies: 3
    Last Post: - 31st May 2006, 23:20
  5. Serial Peripheral Interface (SPI)
    By O2_Guy in forum Serial
    Replies: 1
    Last Post: - 22nd March 2006, 20:01

Members who have read this thread : 0

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

Posting Permissions

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