Excessive Feedback Statements in DEFINE_PROGRAM
Greetings,
I have been tasked with troubleshooting a system with an odd problem. After uploading code to the master, an NXT-CV10 needs to be rebooted for its feedback to work properly. Having a first look at the code, there are MANY feedback statements in DEFINE_PROGRAM and I'm wondering if that could be causing havoc when the system comes back online.
Thanks.
I have been tasked with troubleshooting a system with an odd problem. After uploading code to the master, an NXT-CV10 needs to be rebooted for its feedback to work properly. Having a first look at the code, there are MANY feedback statements in DEFINE_PROGRAM and I'm wondering if that could be causing havoc when the system comes back online.
Thanks.
0
Comments
Have you checked to see if the touch panel is getting some of the feedback from the ONLINE: portion of the TP data event? It could be that the feedback is being sent before the variables are populated after a reboot. Ideally, this data should also be sent when a change occurs in the data, but it is possible that the original programmer didn't provide for this.
Jeff
It was my understanding that channel events in the mainline would only generate traffic if there was a change. Is there something going on that I'm not aware of?
That raises another question... the feedback you are talking about, is it channel related, or is it sending text changes to the panel? I assumed (I know, I know) that we were discussing channel feedback. If it is sending text to the panels in the mainline without conditionals, it could definately be a cause of problems.
Jeff
Channel (and level, for that matter) events to a hardware device won't update unless they change, but channel events to a virtual go out no matter what. But SEND_STRING and SEND_COMMAND go out no matter what as well.
It's not the number of messages going to a panel that lock things up, it's how fast they go out. If the message queue is filling up faster than the messages can be processed, that's when you get problems. How fast messages can be processed depends very much on how much other stuff is going on, but in most cases, they are the easiest to cut back.
[some device channel]=[some tp button]
[some boolean variable]=[some tp button]
...etc
That's the million dollar question that I didn't get an answer too. In my case I have a warm-up/cool-down bargraph that I update every second for the specified time period. This period is from 40-60 seconds for warming up and 90 sec's for cooling.
Use the GLH command to change the bar graphs range high level from 60 to 90 and then back again.
You would only need one send command dvTP,"'GLH-level channel#....... and not the other stuff.
I regularly make a timeline, and put all my panel updates in it so they can't go out more than the timeline frequency. Once a second it not too infrequent, but noticeable in terms of response, but a 500 millisecond is close enough to instantaneous as it needs to be, IMO.
About 50 feedback statements. Some are variable-based, none seem to have issue with non-popultade variables though.
I have taken to pretty much re-coding the whole program. It's a lot of code that really doesn't do that much.
Oh, sry I'm not doing in the define_program section, it was just an example of updating the panel.
None of this however should be nesaccary.