pyprofibus.conf 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. ; ----------------------------------------------- ;
  2. ; ;
  3. ; PROFIBUS configuration ;
  4. ; ;
  5. ; This file configures a pyprofibus instance. ;
  6. ; ;
  7. ; ----------------------------------------------- ;
  8. ; General settings
  9. [PROFIBUS]
  10. ; Enable/disable debug mode.
  11. ; 0 -> no debugging.
  12. ; 1 -> DP debugging.
  13. ; 2 -> DP and PHY debugging.
  14. debug=0
  15. ; PHY protocol layer configuration
  16. [PHY]
  17. ; The PHY layer driver type.
  18. type=dummy_slave
  19. ; The PHY device name/path.
  20. ; Can be a device like /dev/ttyS0 or /dev/ttyAMA0 for 'serial'.
  21. dev=/dev/ttyS0
  22. ; The Profibus on-wire baud rate.
  23. baud=19200
  24. ; FDL protocol layer configuration
  25. [FDL]
  26. ; DP protocol layer configuration
  27. [DP]
  28. ; The master device class. Either 1 or 2.
  29. master_class=1
  30. ; The Profibus address of this device.
  31. master_addr=2
  32. ; ---
  33. ; Slave configurations
  34. ; Add as many [SLAVE_xxx] sections as needed.
  35. ; ---
  36. ; First slave configuration
  37. [SLAVE_0]
  38. ; This slave's Profibus address
  39. addr=8
  40. ; The path to the GSD file.
  41. gsd=misc/dummy_modular.gsd
  42. ; Boolean: Sync mode enabled/available?
  43. sync_mode=1
  44. ; Boolean: Freeze mode enabled/available?
  45. freeze_mode=1
  46. ; 8 bit integer specifying the Profibus group ident mask.
  47. group_mask=1
  48. ; This slave's watchdog timeout, in milliseconds.
  49. watchdog_ms=300
  50. ; Module configuration.
  51. ; For each module plugged into the slave, add a module_xxx
  52. ; entry with the name of the module.
  53. ; The module name must match the name from the GSD file (approximately).
  54. ; The modules are used in the order of the index number.
  55. module_0=dummy input module
  56. module_1=dummy output module
  57. ; The number of output bytes this slave transmits to the
  58. ; master in Data_Exchange.
  59. ; This usually depends on the modules plugged into the slave.
  60. output_size=32
  61. ; The number of input bytes this slave expects to receive
  62. ; in Data_Exchange.
  63. ; This usually depends on the modules plugged into the slave.
  64. input_size=32