Jump to content

Search the Community

Showing results for tags 'bit1 to port1'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • Forum FAQ
  • AutoIt

Calendars

  • Community Calendar

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Hi Folks, I'm new to Autoit and I'm messing around with some SPI device interfacing. What I am trying to do is Map specific output Ports on my connected device to reflect a specific bit within a variable. So for instance if I have an integer: Local $iOUTPUTS = 0xAFand I have 8 separate Output ports on my device: declared as: POUT0 to POUT7 So within Autoit, how can I assign specific Bits from the same variable to different Ports on my device? Essentially what I'm trying to do is create a parallel port on my SPI device using its I/O ports and have it reflect a single Variable. Bit0 of "iOUPOUTS" = PORT0 Bit1 of "iOUPOUTS" = PORT1 Bit2 of "iOUPOUTS" = PORT2 Bit3 of "iOUPOUTS" = PORT3 Bit4 of "iOUPOUTS" = PORT4 Bit5 of "iOUPOUTS" = PORT5 Bit6 of "iOUPOUTS" = PORT6 Bit7 of "iOUPOUTS" = PORT7 In C programming I believe this is done using a LAT function like that shown below: #define RB15 LATBbits.LATB15 #define RB14 LATBbits.LATB14 #define RB13 LATBbits.LATB13 #define RB12 LATBbits.LATB12 #define RB11 LATBbits.LATB11 #define RB10 LATBbits.LATB10 #define RB6 LATBbits.LATB6 #define RB5 LATBbits.LATB5 #define RB4 LATBbits.LATB4However I need to implement this within Autoit and I'm wondering if there is a way to do this? Any help would be greatly appreciated. Cheers! -Billy
×
×
  • Create New...