Reading a text file data and displaying it into LCD (ARM Language)











up vote
0
down vote

favorite












I need to read integer data from a text file representing current values and measure them interactively they should be shown in the LCD display and if a current value is greater than a threshold value the the left LED should be fired. At the end the RMS value and the mean value should be presented on the LCD display. Since this is simulation only, I'm using ARMSim# (version 1.9.1) to achieve that, unfortunetly my skills in ARM programming are limited. I gathered some info which led me to this until now (it is not working and I need a lot of advice to be really able to simulate this)



    .global _start
.text
_start:

@----- manipulate file for string reading and lcd writing-----
@----- input mode aperture for the file-----

loopbottonblack: @fire left or right led
swi 0x202 @ checks if one of the black buttons were pressed
cmp r0,#0x02 @left button pressed
beq ActOnLeftBlack @go label "ActOnLeftBlack"
cmp r0,#0x01 @right button pressed
beq ActOnRightBlack @go label "ActOnRightBlack"
bal loopbottonblack

ldr r0,=nomedoarquivo @ sets output file name
mov r1,#0 @ output mode
swi 0x66 @ open file for input
mov r6,r0
bcs erroarquivo @ mistake conditon

@inicio de ler strings
loop: @interative loop beginning
mov r0,r6
ldr r1,=manipulararquivo @ loads input file to manipulate

@ler string
ldr r1,=mystring
mov r3,r1
mov r2,#256
swi 0x6a @read a string in the file
bcs fim
@ldr r2,=emptystring @writes an empty string
@mov r0,#8 @ column number
@mov r1,#8 @ line number
@swi 0x204 @writes an empty string to LCD
@linha0
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#0 @ line number
swi 0x204 @writes a read string to the file
@linha1
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#1 @ line number
swi 0x204 @writes a read string to the file
@linha2
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#2 @ line number
swi 0x204 @writes a lcd string to the file
@linha3
ldr r4,=0
ldr r5,=300000

loopbottonblack2: @fire left of right led
swi 0x202 @ checks if one of the black buttons were pressed
cmp r0,#0x02 @left button pressed
beq ActOnLeftBlack @go label "ActOnLeftBlack"
cmp r0,#0x01 @right button pressed
beq ActOnRightBlack @go label "ActOnRightBlack"
bal looptime

ActOnLeftBlack: @fires left LED
mov r0,#0x02
swi 0x201 @shows left led (on)
bal looptime @go label "loopbottonblack" and do not end the program

ActOnRightBlack: @fires the right led
mov r0,#0x01
swi 0x201 @shows the right led (on)
bal looptime @go label "fimdoprograma" and ends the program


looptime: @introduces a delay to see all read lines of the file
add r4,r4,#1
cmp r4,r5 @compares r4 and r5
ble looptime @if r4 has a smaller value than 100000 goes back to looptime
bal loop @end of interactive loop

@end of reading strings
erroarquivo:
mov r0, #1
ldr r1, =menserroarquivo
swi 0x69
bal fim @ goes to the end of the program

fim:
@ == closes the file ============
ldr r0, =manipulararquivo @ takes the adress of manipulated file
ldr r0, [r0] @ take values in the adress
swi 0x68
swi 0x11 @stops executing

.data
.align
mystring: .asciz "" @set a variable with a string
nomedoarquivo: .asciz "file.txt"
menserroarquivo: .asciz "nao habil para abrir o arquivo de saidan"
manipulararquivo: .word 0
emptystring: .asciz " " @set variable with an empty string
@----- manipulating files to write string end-----
.end









share|improve this question


















  • 2




    Going to need more information than this, I'm afraid! In what way is it not working? What output do you get, and how does it differ from what you expect? Try to narrow down your question as much as possible. See how to ask.
    – cooperised
    Nov 19 at 12:27















up vote
0
down vote

favorite












I need to read integer data from a text file representing current values and measure them interactively they should be shown in the LCD display and if a current value is greater than a threshold value the the left LED should be fired. At the end the RMS value and the mean value should be presented on the LCD display. Since this is simulation only, I'm using ARMSim# (version 1.9.1) to achieve that, unfortunetly my skills in ARM programming are limited. I gathered some info which led me to this until now (it is not working and I need a lot of advice to be really able to simulate this)



    .global _start
.text
_start:

@----- manipulate file for string reading and lcd writing-----
@----- input mode aperture for the file-----

loopbottonblack: @fire left or right led
swi 0x202 @ checks if one of the black buttons were pressed
cmp r0,#0x02 @left button pressed
beq ActOnLeftBlack @go label "ActOnLeftBlack"
cmp r0,#0x01 @right button pressed
beq ActOnRightBlack @go label "ActOnRightBlack"
bal loopbottonblack

ldr r0,=nomedoarquivo @ sets output file name
mov r1,#0 @ output mode
swi 0x66 @ open file for input
mov r6,r0
bcs erroarquivo @ mistake conditon

@inicio de ler strings
loop: @interative loop beginning
mov r0,r6
ldr r1,=manipulararquivo @ loads input file to manipulate

@ler string
ldr r1,=mystring
mov r3,r1
mov r2,#256
swi 0x6a @read a string in the file
bcs fim
@ldr r2,=emptystring @writes an empty string
@mov r0,#8 @ column number
@mov r1,#8 @ line number
@swi 0x204 @writes an empty string to LCD
@linha0
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#0 @ line number
swi 0x204 @writes a read string to the file
@linha1
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#1 @ line number
swi 0x204 @writes a read string to the file
@linha2
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#2 @ line number
swi 0x204 @writes a lcd string to the file
@linha3
ldr r4,=0
ldr r5,=300000

loopbottonblack2: @fire left of right led
swi 0x202 @ checks if one of the black buttons were pressed
cmp r0,#0x02 @left button pressed
beq ActOnLeftBlack @go label "ActOnLeftBlack"
cmp r0,#0x01 @right button pressed
beq ActOnRightBlack @go label "ActOnRightBlack"
bal looptime

ActOnLeftBlack: @fires left LED
mov r0,#0x02
swi 0x201 @shows left led (on)
bal looptime @go label "loopbottonblack" and do not end the program

ActOnRightBlack: @fires the right led
mov r0,#0x01
swi 0x201 @shows the right led (on)
bal looptime @go label "fimdoprograma" and ends the program


looptime: @introduces a delay to see all read lines of the file
add r4,r4,#1
cmp r4,r5 @compares r4 and r5
ble looptime @if r4 has a smaller value than 100000 goes back to looptime
bal loop @end of interactive loop

@end of reading strings
erroarquivo:
mov r0, #1
ldr r1, =menserroarquivo
swi 0x69
bal fim @ goes to the end of the program

fim:
@ == closes the file ============
ldr r0, =manipulararquivo @ takes the adress of manipulated file
ldr r0, [r0] @ take values in the adress
swi 0x68
swi 0x11 @stops executing

.data
.align
mystring: .asciz "" @set a variable with a string
nomedoarquivo: .asciz "file.txt"
menserroarquivo: .asciz "nao habil para abrir o arquivo de saidan"
manipulararquivo: .word 0
emptystring: .asciz " " @set variable with an empty string
@----- manipulating files to write string end-----
.end









share|improve this question


















  • 2




    Going to need more information than this, I'm afraid! In what way is it not working? What output do you get, and how does it differ from what you expect? Try to narrow down your question as much as possible. See how to ask.
    – cooperised
    Nov 19 at 12:27













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I need to read integer data from a text file representing current values and measure them interactively they should be shown in the LCD display and if a current value is greater than a threshold value the the left LED should be fired. At the end the RMS value and the mean value should be presented on the LCD display. Since this is simulation only, I'm using ARMSim# (version 1.9.1) to achieve that, unfortunetly my skills in ARM programming are limited. I gathered some info which led me to this until now (it is not working and I need a lot of advice to be really able to simulate this)



    .global _start
.text
_start:

@----- manipulate file for string reading and lcd writing-----
@----- input mode aperture for the file-----

loopbottonblack: @fire left or right led
swi 0x202 @ checks if one of the black buttons were pressed
cmp r0,#0x02 @left button pressed
beq ActOnLeftBlack @go label "ActOnLeftBlack"
cmp r0,#0x01 @right button pressed
beq ActOnRightBlack @go label "ActOnRightBlack"
bal loopbottonblack

ldr r0,=nomedoarquivo @ sets output file name
mov r1,#0 @ output mode
swi 0x66 @ open file for input
mov r6,r0
bcs erroarquivo @ mistake conditon

@inicio de ler strings
loop: @interative loop beginning
mov r0,r6
ldr r1,=manipulararquivo @ loads input file to manipulate

@ler string
ldr r1,=mystring
mov r3,r1
mov r2,#256
swi 0x6a @read a string in the file
bcs fim
@ldr r2,=emptystring @writes an empty string
@mov r0,#8 @ column number
@mov r1,#8 @ line number
@swi 0x204 @writes an empty string to LCD
@linha0
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#0 @ line number
swi 0x204 @writes a read string to the file
@linha1
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#1 @ line number
swi 0x204 @writes a read string to the file
@linha2
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#2 @ line number
swi 0x204 @writes a lcd string to the file
@linha3
ldr r4,=0
ldr r5,=300000

loopbottonblack2: @fire left of right led
swi 0x202 @ checks if one of the black buttons were pressed
cmp r0,#0x02 @left button pressed
beq ActOnLeftBlack @go label "ActOnLeftBlack"
cmp r0,#0x01 @right button pressed
beq ActOnRightBlack @go label "ActOnRightBlack"
bal looptime

ActOnLeftBlack: @fires left LED
mov r0,#0x02
swi 0x201 @shows left led (on)
bal looptime @go label "loopbottonblack" and do not end the program

ActOnRightBlack: @fires the right led
mov r0,#0x01
swi 0x201 @shows the right led (on)
bal looptime @go label "fimdoprograma" and ends the program


looptime: @introduces a delay to see all read lines of the file
add r4,r4,#1
cmp r4,r5 @compares r4 and r5
ble looptime @if r4 has a smaller value than 100000 goes back to looptime
bal loop @end of interactive loop

@end of reading strings
erroarquivo:
mov r0, #1
ldr r1, =menserroarquivo
swi 0x69
bal fim @ goes to the end of the program

fim:
@ == closes the file ============
ldr r0, =manipulararquivo @ takes the adress of manipulated file
ldr r0, [r0] @ take values in the adress
swi 0x68
swi 0x11 @stops executing

.data
.align
mystring: .asciz "" @set a variable with a string
nomedoarquivo: .asciz "file.txt"
menserroarquivo: .asciz "nao habil para abrir o arquivo de saidan"
manipulararquivo: .word 0
emptystring: .asciz " " @set variable with an empty string
@----- manipulating files to write string end-----
.end









share|improve this question













I need to read integer data from a text file representing current values and measure them interactively they should be shown in the LCD display and if a current value is greater than a threshold value the the left LED should be fired. At the end the RMS value and the mean value should be presented on the LCD display. Since this is simulation only, I'm using ARMSim# (version 1.9.1) to achieve that, unfortunetly my skills in ARM programming are limited. I gathered some info which led me to this until now (it is not working and I need a lot of advice to be really able to simulate this)



    .global _start
.text
_start:

@----- manipulate file for string reading and lcd writing-----
@----- input mode aperture for the file-----

loopbottonblack: @fire left or right led
swi 0x202 @ checks if one of the black buttons were pressed
cmp r0,#0x02 @left button pressed
beq ActOnLeftBlack @go label "ActOnLeftBlack"
cmp r0,#0x01 @right button pressed
beq ActOnRightBlack @go label "ActOnRightBlack"
bal loopbottonblack

ldr r0,=nomedoarquivo @ sets output file name
mov r1,#0 @ output mode
swi 0x66 @ open file for input
mov r6,r0
bcs erroarquivo @ mistake conditon

@inicio de ler strings
loop: @interative loop beginning
mov r0,r6
ldr r1,=manipulararquivo @ loads input file to manipulate

@ler string
ldr r1,=mystring
mov r3,r1
mov r2,#256
swi 0x6a @read a string in the file
bcs fim
@ldr r2,=emptystring @writes an empty string
@mov r0,#8 @ column number
@mov r1,#8 @ line number
@swi 0x204 @writes an empty string to LCD
@linha0
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#0 @ line number
swi 0x204 @writes a read string to the file
@linha1
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#1 @ line number
swi 0x204 @writes a read string to the file
@linha2
mov r2,r3
ldr r2,=mystring
mov r0,#0 @ column number
mov r1,#2 @ line number
swi 0x204 @writes a lcd string to the file
@linha3
ldr r4,=0
ldr r5,=300000

loopbottonblack2: @fire left of right led
swi 0x202 @ checks if one of the black buttons were pressed
cmp r0,#0x02 @left button pressed
beq ActOnLeftBlack @go label "ActOnLeftBlack"
cmp r0,#0x01 @right button pressed
beq ActOnRightBlack @go label "ActOnRightBlack"
bal looptime

ActOnLeftBlack: @fires left LED
mov r0,#0x02
swi 0x201 @shows left led (on)
bal looptime @go label "loopbottonblack" and do not end the program

ActOnRightBlack: @fires the right led
mov r0,#0x01
swi 0x201 @shows the right led (on)
bal looptime @go label "fimdoprograma" and ends the program


looptime: @introduces a delay to see all read lines of the file
add r4,r4,#1
cmp r4,r5 @compares r4 and r5
ble looptime @if r4 has a smaller value than 100000 goes back to looptime
bal loop @end of interactive loop

@end of reading strings
erroarquivo:
mov r0, #1
ldr r1, =menserroarquivo
swi 0x69
bal fim @ goes to the end of the program

fim:
@ == closes the file ============
ldr r0, =manipulararquivo @ takes the adress of manipulated file
ldr r0, [r0] @ take values in the adress
swi 0x68
swi 0x11 @stops executing

.data
.align
mystring: .asciz "" @set a variable with a string
nomedoarquivo: .asciz "file.txt"
menserroarquivo: .asciz "nao habil para abrir o arquivo de saidan"
manipulararquivo: .word 0
emptystring: .asciz " " @set variable with an empty string
@----- manipulating files to write string end-----
.end






file arm lcd






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 19 at 11:41









Rezik

33




33








  • 2




    Going to need more information than this, I'm afraid! In what way is it not working? What output do you get, and how does it differ from what you expect? Try to narrow down your question as much as possible. See how to ask.
    – cooperised
    Nov 19 at 12:27














  • 2




    Going to need more information than this, I'm afraid! In what way is it not working? What output do you get, and how does it differ from what you expect? Try to narrow down your question as much as possible. See how to ask.
    – cooperised
    Nov 19 at 12:27








2




2




Going to need more information than this, I'm afraid! In what way is it not working? What output do you get, and how does it differ from what you expect? Try to narrow down your question as much as possible. See how to ask.
– cooperised
Nov 19 at 12:27




Going to need more information than this, I'm afraid! In what way is it not working? What output do you get, and how does it differ from what you expect? Try to narrow down your question as much as possible. See how to ask.
– cooperised
Nov 19 at 12:27

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373885%2freading-a-text-file-data-and-displaying-it-into-lcd-arm-language%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373885%2freading-a-text-file-data-and-displaying-it-into-lcd-arm-language%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Npm cannot find a required file even through it is in the searched directory

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith