Date: prev next · Thread: first prev next last
2012 Archives by date, by thread · List index


I am trying to write scripts accessing the system files, such as /dev/ttyS0.
If I use "Open" I got the error "Device I/O error" message. Are there any
special function call needed to be done for the system files? User
permission is good as I can access to the file using any other Linux
commands.

Following is the code I tried. It stalled on the first "Open" statement:

Sub Main
        Dim iNumber As Integer
        Dim aFile As String
        aFile = "/dev/ttyS0"
        iNumber = Freefile
        Open aFile For Output As #iNumber
        Print #iNumber, "*IDN?"
        close #iNumber
        iNumber = Freefile
        Open aFile For Input As #iNumber
        While not eof(iNumber)
                Line Input #iNumber, sLine
                If sLine <>"" then
                        sMsg = sMsg & sLine & chr(13)
                end if
        wend
        Close #iNumber
        Msgbox sMsg
End Sub



--
View this message in context: 
http://nabble.documentfoundation.org/BASIC-script-how-to-read-write-system-files-like-dev-null-in-Linux-tp4013296.html
Sent from the Users mailing list archive at Nabble.com.

-- 
For unsubscribe instructions e-mail to: users+help@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.