How useful is AVRco

polling your opinion

  • 1
  • 2
  • 3
  • 4
  • 5
  • Seite 4 von 5

Umfrage

How useful is AVRco
great tool
 
8 (72.73%)
very useful
 
3 (27.27%)
useful
 
0 (0%)
less useful
 
0 (0%)
don't know
 
0 (0%)
 
0 (0%)
Stimmen insgesamt:11
Ub.Heinrich
 
Avatar
 
Betreff:

Re: How useful is AVRco

 · 
Gepostet: 28.09.2006 - 11:20 Uhr  ·  #25
Hallo Rolf,

auf gut deutsch, das was noch nicht drinnen ist!! Sprich der Client (Ist bei Modbus so!)!

Liebe Grüße
Tassilo
rh
Administrator
Avatar
Geschlecht:
Herkunft: Germany
Alter: 25
Homepage: e-lab.de
Beiträge: 5558
Dabei seit: 03 / 2002
Betreff:

Re: How useful is AVRco

 · 
Gepostet: 28.09.2006 - 11:22 Uhr  ·  #26
@Tassilo,

also Modbus Master, auf gut deutsch?! :ja:

rolf
Avra
Schreiberling
Avatar
Geschlecht:
Herkunft: Belgrade, Serbia
Alter: 54
Homepage: rs.linkedin.com/in…
Beiträge: 653
Dabei seit: 07 / 2002
Betreff:

Re: How useful is AVRco

 · 
Gepostet: 28.09.2006 - 12:20 Uhr  ·  #27
Zitat geschrieben von Ub.Heinrich
@Tassilo,
a ModBus Server? Does make that sense?"

Ich meinte natürlich den Slave!! - Sorry

@Tassilo
If I understood german well (I apologize if I made a mistake), you were wrong both times. In MODBUS terminology MODBUS SERVER = MODBUS SLAVE, and MODBUS CLIENT = MODBUS MASTER. I know it's a little confusing but that's the way it is. First time you mentioned MODBUS SERVER, and in next message you corrected yourself saying MODBUS SLAVE, but that is the same thing. MODBUS SERVER (=SLAVE) is already implemented in AvrCo with RTU and ASCII serial line protocols, so master (PC for example) can read many AVR slaves. MODBUS is by specification single master multi slaves protocol. I suppose that you originally wanted to say that you want MODBUS MASTER (=CLIENT). I didn't implement MODBUS MASTER (=CLIENT) in AvrCo, but I can if Rolf contacts me on this matter. There are no plans for it, yet. However, I think that implementation of MODBUS SLAVE for ethernet has much bigger audience and it may be more important for AvrCo. Anyway, it's up to Rolf to decide if any of this is needed and should be scheduled at all.
rh
Administrator
Avatar
Geschlecht:
Herkunft: Germany
Alter: 25
Homepage: e-lab.de
Beiträge: 5558
Dabei seit: 03 / 2002
Betreff:

Re: How useful is AVRco

 · 
Gepostet: 28.09.2006 - 12:32 Uhr  ·  #28
@Tassilo,
@Avra,

I don't know whether a Modbus Master in AVRco makes sense or is very useful.
For local networks (mainly single master) I suggest to use the SLIP protocol
with RS485 for communication. With higher sophisticated apps using multi
master the best will be the CAN BUS.

rolf
Avra
Schreiberling
Avatar
Geschlecht:
Herkunft: Belgrade, Serbia
Alter: 54
Homepage: rs.linkedin.com/in…
Beiträge: 653
Dabei seit: 07 / 2002
Betreff:

Re: How useful is AVRco

 · 
Gepostet: 28.09.2006 - 17:12 Uhr  ·  #29
Here is another suggestion...

I attached a picture showing Siemens Simatic STEP7 SCL running online. If you look carefully, you can see that cursor is in line 162, and that starting from that line values of all visible variables are shown in right window. Values are continually updated, and that is very handy for following what's going on. How could that be applied to AvrCo? Well, maybe one way could be to have an invisible break at code where cursor is, and then variable values could be downloaded from AVR and shown in window attached to pascal source code window. Somewhere in menues (or directly in some editfield of attached window) we could have an option to set if we want update to happen every scan (each pass of program counter over that invisible break is counted as one scan), every 100th scan, every 500th scan, etc. It seams to me that this is more practical then entering update to happen every 0.5 seconds, or each second, or something like that, but I don't mind.

What do you think?
Der an diesem Beitrag angefügte Anhang ist entweder nur im eingeloggten Zustand sichtbar oder die Berechtigung Deiner Benutzergruppe ist nicht ausreichend.
rh
Administrator
Avatar
Geschlecht:
Herkunft: Germany
Alter: 25
Homepage: e-lab.de
Beiträge: 5558
Dabei seit: 03 / 2002
Betreff:

Re: How useful is AVRco

 · 
Gepostet: 28.09.2006 - 19:25 Uhr  ·  #30
Hi Avra,

looks like an AVRco source, but it is another world. Looking behind this tool
it is very, very different to AVRco.

But I think it can be possible to extend the AVRco Pascal to accept most
or all S7 commands and syntax. Anyway, I wonder how important will this
be for the embedded community.

rolf
Avra
Schreiberling
Avatar
Geschlecht:
Herkunft: Belgrade, Serbia
Alter: 54
Homepage: rs.linkedin.com/in…
Beiträge: 653
Dabei seit: 07 / 2002
Betreff:

Re: How useful is AVRco

 · 
Gepostet: 29.09.2006 - 12:48 Uhr  ·  #31
@Rolf:
Don't look at the syntax, that's not the point. Look at debugging window on the right that shows continually updated online values of all shown variables. That's what might be interesting to implement to make AvrCo even better. Right now, we have many steps to take if we want to monitor variables in our AVRs online. If we borrow this idea from big(ger) brother ;D , then we all get elegant way to just run the code and monitor values of all variables that are shown. No typing, no clicking, no menus and no popup windows at all. Just one click (actually, this would be default in my AvrCo). This new window should be attached to right side of pascal source window, and we should be able to change update interval and be able to switch it on/off completelly. I can confirm that this is really a time saver when debugging.
rh
Administrator
Avatar
Geschlecht:
Herkunft: Germany
Alter: 25
Homepage: e-lab.de
Beiträge: 5558
Dabei seit: 03 / 2002
Betreff:

Re: How useful is AVRco

 · 
Gepostet: 29.09.2006 - 13:00 Uhr  ·  #32
Hello Avra,

ok, now I understand it! Nice feature.
I plan to use the same editor as in the IDE also in the SIM. When doing this
I will consider your suggestion.

rolf
  • 1
  • 2
  • 3
  • 4
  • 5
  • Seite 4 von 5
Gewählte Zitate für Mehrfachzitierung:   0

Registrierte in diesem Topic

Aktuell kein registrierter in diesem Bereich

Die Statistik zeigt, wer in den letzten 5 Minuten online war. Erneuerung alle 90 Sekunden.
MySQL Queries: 10 · Cache Hits: 14   114   128 · Page-Gen-Time: 0.016342s · Speichernutzung: 2 MB · GZIP: ein · Viewport: SMXL-HiDPI