objdict.eds 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806
  1. [FileInfo]
  2. FileName=objdict.eds
  3. FileVersion=1
  4. FileRevision=1
  5. LastEDS=
  6. EDSVersion=4.0
  7. Description=
  8. CreationTime=2:52PM
  9. CreationDate=09-18-2019
  10. CreatedBy=
  11. ModificationTime=12:28PM
  12. ModificationDate=02-20-2020
  13. ModifiedBy=
  14. [DeviceInfo]
  15. VendorName=
  16. VendorNumber=0
  17. ProductName=Zephyr RTOS CANopen sample
  18. ProductNumber=0
  19. RevisionNumber=0
  20. BaudRate_10=1
  21. BaudRate_20=1
  22. BaudRate_50=1
  23. BaudRate_125=1
  24. BaudRate_250=1
  25. BaudRate_500=1
  26. BaudRate_800=1
  27. BaudRate_1000=1
  28. SimpleBootUpMaster=0
  29. SimpleBootUpSlave=0
  30. Granularity=0
  31. DynamicChannelsSupported=0
  32. CompactPDO=0
  33. GroupMessaging=0
  34. NrOfRXPDO=4
  35. NrOfTXPDO=4
  36. LSS_Supported=0
  37. ;LSS_Type=Server
  38. [DummyUsage]
  39. Dummy0001=0
  40. Dummy0002=0
  41. Dummy0003=0
  42. Dummy0004=0
  43. Dummy0005=0
  44. Dummy0006=0
  45. Dummy0007=0
  46. [Comments]
  47. Lines=0
  48. [MandatoryObjects]
  49. SupportedObjects=3
  50. 1=0x1000
  51. 2=0x1001
  52. 3=0x1018
  53. [1000]
  54. ParameterName=Device type
  55. ObjectType=0x7
  56. ;StorageLocation=ROM
  57. DataType=0x0007
  58. AccessType=ro
  59. DefaultValue=0x00000000
  60. PDOMapping=0
  61. [1001]
  62. ParameterName=Error register
  63. ObjectType=0x7
  64. ;StorageLocation=RAM
  65. DataType=0x0005
  66. AccessType=ro
  67. DefaultValue=0
  68. PDOMapping=1
  69. [1018]
  70. ParameterName=Identity
  71. ObjectType=0x9
  72. ;StorageLocation=ROM
  73. SubNumber=0x5
  74. [1018sub0]
  75. ParameterName=max sub-index
  76. ObjectType=0x7
  77. ;StorageLocation=ROM
  78. DataType=0x0005
  79. AccessType=ro
  80. DefaultValue=4
  81. PDOMapping=0
  82. [1018sub1]
  83. ParameterName=Vendor-ID
  84. ObjectType=0x7
  85. ;StorageLocation=ROM
  86. DataType=0x0007
  87. AccessType=ro
  88. DefaultValue=0x00000000
  89. PDOMapping=0
  90. [1018sub2]
  91. ParameterName=Product code
  92. ObjectType=0x7
  93. ;StorageLocation=ROM
  94. DataType=0x0007
  95. AccessType=ro
  96. DefaultValue=0x00000000
  97. PDOMapping=0
  98. [1018sub3]
  99. ParameterName=Revision number
  100. ObjectType=0x7
  101. ;StorageLocation=ROM
  102. DataType=0x0007
  103. AccessType=ro
  104. DefaultValue=0x00000000
  105. PDOMapping=0
  106. [1018sub4]
  107. ParameterName=Serial number
  108. ObjectType=0x7
  109. ;StorageLocation=ROM
  110. DataType=0x0007
  111. AccessType=ro
  112. DefaultValue=0x00000000
  113. PDOMapping=0
  114. [OptionalObjects]
  115. SupportedObjects=39
  116. 1=0x1002
  117. 2=0x1003
  118. 3=0x1005
  119. 4=0x1006
  120. 5=0x1007
  121. 6=0x1008
  122. 7=0x1009
  123. 8=0x100A
  124. 9=0x1010
  125. 10=0x1011
  126. 11=0x1012
  127. 12=0x1014
  128. 13=0x1015
  129. 14=0x1016
  130. 15=0x1017
  131. 16=0x1019
  132. 17=0x1029
  133. 18=0x1200
  134. 19=0x1400
  135. 20=0x1401
  136. 21=0x1402
  137. 22=0x1403
  138. 23=0x1600
  139. 24=0x1601
  140. 25=0x1602
  141. 26=0x1603
  142. 27=0x1800
  143. 28=0x1801
  144. 29=0x1802
  145. 30=0x1803
  146. 31=0x1A00
  147. 32=0x1A01
  148. 33=0x1A02
  149. 34=0x1A03
  150. 35=0x1F50
  151. 36=0x1F51
  152. 37=0x1F56
  153. 38=0x1F57
  154. 39=0x1F80
  155. [1002]
  156. ParameterName=Manufacturer status register
  157. ObjectType=0x7
  158. ;StorageLocation=RAM
  159. DataType=0x0007
  160. AccessType=ro
  161. DefaultValue=0
  162. PDOMapping=1
  163. [1003]
  164. ParameterName=Pre-defined error field
  165. ObjectType=0x8
  166. ;StorageLocation=RAM
  167. SubNumber=0x9
  168. [1003sub0]
  169. ParameterName=Number of errors
  170. ObjectType=0x7
  171. ;StorageLocation=RAM
  172. DataType=0x0005
  173. AccessType=rw
  174. DefaultValue=0x00
  175. PDOMapping=0
  176. [1003sub1]
  177. ParameterName=Standard error field
  178. ObjectType=0x7
  179. ;StorageLocation=RAM
  180. DataType=0x0007
  181. AccessType=ro
  182. DefaultValue=0
  183. PDOMapping=0
  184. [1003sub2]
  185. ParameterName=Standard error field
  186. ObjectType=0x7
  187. ;StorageLocation=RAM
  188. DataType=0x0007
  189. AccessType=ro
  190. DefaultValue=0
  191. PDOMapping=0
  192. [1003sub3]
  193. ParameterName=Standard error field
  194. ObjectType=0x7
  195. ;StorageLocation=RAM
  196. DataType=0x0007
  197. AccessType=ro
  198. DefaultValue=0
  199. PDOMapping=0
  200. [1003sub4]
  201. ParameterName=Standard error field
  202. ObjectType=0x7
  203. ;StorageLocation=RAM
  204. DataType=0x0007
  205. AccessType=ro
  206. DefaultValue=0
  207. PDOMapping=0
  208. [1003sub5]
  209. ParameterName=Standard error field
  210. ObjectType=0x7
  211. ;StorageLocation=RAM
  212. DataType=0x0007
  213. AccessType=ro
  214. DefaultValue=0
  215. PDOMapping=0
  216. [1003sub6]
  217. ParameterName=Standard error field
  218. ObjectType=0x7
  219. ;StorageLocation=RAM
  220. DataType=0x0007
  221. AccessType=ro
  222. DefaultValue=0
  223. PDOMapping=0
  224. [1003sub7]
  225. ParameterName=Standard error field
  226. ObjectType=0x7
  227. ;StorageLocation=RAM
  228. DataType=0x0007
  229. AccessType=ro
  230. DefaultValue=0
  231. PDOMapping=0
  232. [1003sub8]
  233. ParameterName=Standard error field
  234. ObjectType=0x7
  235. ;StorageLocation=RAM
  236. DataType=0x0007
  237. AccessType=ro
  238. DefaultValue=0
  239. PDOMapping=0
  240. [1005]
  241. ParameterName=COB-ID SYNC message
  242. ObjectType=0x7
  243. ;StorageLocation=ROM
  244. DataType=0x0007
  245. AccessType=rw
  246. DefaultValue=0x00000080
  247. PDOMapping=0
  248. [1006]
  249. ParameterName=Communication cycle period
  250. ObjectType=0x7
  251. ;StorageLocation=ROM
  252. DataType=0x0007
  253. AccessType=rw
  254. DefaultValue=0
  255. PDOMapping=0
  256. [1007]
  257. ParameterName=Synchronous window length
  258. ObjectType=0x7
  259. ;StorageLocation=ROM
  260. DataType=0x0007
  261. AccessType=rw
  262. DefaultValue=0
  263. PDOMapping=0
  264. [1008]
  265. ParameterName=Manufacturer device name
  266. ObjectType=0x7
  267. ;StorageLocation=ROM
  268. DataType=0x0009
  269. AccessType=const
  270. DefaultValue=Zephyr RTOS/CANopenNode
  271. PDOMapping=0
  272. [1009]
  273. ParameterName=Manufacturer hardware version
  274. ObjectType=0x7
  275. ;StorageLocation=ROM
  276. DataType=0x0009
  277. AccessType=const
  278. DefaultValue=3.00
  279. PDOMapping=0
  280. [100A]
  281. ParameterName=Manufacturer software version
  282. ObjectType=0x7
  283. ;StorageLocation=ROM
  284. DataType=0x0009
  285. AccessType=const
  286. DefaultValue=3.00
  287. PDOMapping=0
  288. [1010]
  289. ParameterName=Store parameters
  290. ObjectType=0x8
  291. ;StorageLocation=RAM
  292. SubNumber=0x2
  293. [1010sub0]
  294. ParameterName=max sub-index
  295. ObjectType=0x7
  296. ;StorageLocation=RAM
  297. DataType=0x0005
  298. AccessType=ro
  299. DefaultValue=1
  300. PDOMapping=0
  301. [1010sub1]
  302. ParameterName=save all parameters
  303. ObjectType=0x7
  304. ;StorageLocation=RAM
  305. DataType=0x0007
  306. AccessType=rw
  307. DefaultValue=0x00000003
  308. PDOMapping=0
  309. [1011]
  310. ParameterName=Restore default parameters
  311. ObjectType=0x8
  312. ;StorageLocation=RAM
  313. SubNumber=0x2
  314. [1011sub0]
  315. ParameterName=max sub-index
  316. ObjectType=0x7
  317. ;StorageLocation=RAM
  318. DataType=0x0005
  319. AccessType=ro
  320. DefaultValue=1
  321. PDOMapping=0
  322. [1011sub1]
  323. ParameterName=restore all default parameters
  324. ObjectType=0x7
  325. ;StorageLocation=RAM
  326. DataType=0x0007
  327. AccessType=rw
  328. DefaultValue=0x00000001
  329. PDOMapping=0
  330. [1012]
  331. ParameterName=COB-ID TIME
  332. ObjectType=0x7
  333. ;StorageLocation=ROM
  334. DataType=0x0007
  335. AccessType=ro
  336. DefaultValue=
  337. PDOMapping=0
  338. [1014]
  339. ParameterName=COB-ID EMCY
  340. ObjectType=0x7
  341. ;StorageLocation=ROM
  342. DataType=0x0007
  343. AccessType=ro
  344. DefaultValue=$NODEID+0x80
  345. PDOMapping=0
  346. [1015]
  347. ParameterName=inhibit time EMCY
  348. ObjectType=0x7
  349. ;StorageLocation=ROM
  350. DataType=0x0006
  351. AccessType=rw
  352. DefaultValue=100
  353. PDOMapping=0
  354. [1016]
  355. ParameterName=Consumer heartbeat time
  356. ObjectType=0x8
  357. ;StorageLocation=ROM
  358. SubNumber=0x5
  359. [1016sub0]
  360. ParameterName=max sub-index
  361. ObjectType=0x7
  362. ;StorageLocation=ROM
  363. DataType=0x0005
  364. AccessType=ro
  365. DefaultValue=4
  366. PDOMapping=0
  367. [1016sub1]
  368. ParameterName=Consumer heartbeat time
  369. ObjectType=0x7
  370. ;StorageLocation=ROM
  371. DataType=0x0007
  372. AccessType=rw
  373. DefaultValue=0x00000000
  374. PDOMapping=0
  375. [1016sub2]
  376. ParameterName=Consumer heartbeat time
  377. ObjectType=0x7
  378. ;StorageLocation=ROM
  379. DataType=0x0007
  380. AccessType=rw
  381. DefaultValue=0x00000000
  382. PDOMapping=0
  383. [1016sub3]
  384. ParameterName=Consumer heartbeat time
  385. ObjectType=0x7
  386. ;StorageLocation=ROM
  387. DataType=0x0007
  388. AccessType=rw
  389. DefaultValue=0x00000000
  390. PDOMapping=0
  391. [1016sub4]
  392. ParameterName=Consumer heartbeat time
  393. ObjectType=0x7
  394. ;StorageLocation=ROM
  395. DataType=0x0007
  396. AccessType=rw
  397. DefaultValue=0x00000000
  398. PDOMapping=0
  399. [1017]
  400. ParameterName=Producer heartbeat time
  401. ObjectType=0x7
  402. ;StorageLocation=ROM
  403. DataType=0x0006
  404. AccessType=rw
  405. DefaultValue=1000
  406. PDOMapping=0
  407. [1019]
  408. ParameterName=Synchronous counter overflow value
  409. ObjectType=0x7
  410. ;StorageLocation=ROM
  411. DataType=0x0005
  412. AccessType=rw
  413. DefaultValue=0
  414. PDOMapping=0
  415. [1029]
  416. ParameterName=Error behavior
  417. ObjectType=0x8
  418. ;StorageLocation=ROM
  419. SubNumber=0x7
  420. [1029sub0]
  421. ParameterName=max sub-index
  422. ObjectType=0x7
  423. ;StorageLocation=ROM
  424. DataType=0x0005
  425. AccessType=ro
  426. DefaultValue=6
  427. PDOMapping=0
  428. [1029sub1]
  429. ParameterName=Communication
  430. ObjectType=0x7
  431. ;StorageLocation=ROM
  432. DataType=0x0005
  433. AccessType=rw
  434. DefaultValue=0x00
  435. PDOMapping=0
  436. [1029sub2]
  437. ParameterName=Communication other
  438. ObjectType=0x7
  439. ;StorageLocation=ROM
  440. DataType=0x0005
  441. AccessType=rw
  442. DefaultValue=0x00
  443. PDOMapping=0
  444. [1029sub3]
  445. ParameterName=Communication passive
  446. ObjectType=0x7
  447. ;StorageLocation=ROM
  448. DataType=0x0005
  449. AccessType=rw
  450. DefaultValue=0x01
  451. PDOMapping=0
  452. [1029sub4]
  453. ParameterName=Generic
  454. ObjectType=0x7
  455. ;StorageLocation=ROM
  456. DataType=0x0005
  457. AccessType=rw
  458. DefaultValue=0x00
  459. PDOMapping=0
  460. [1029sub5]
  461. ParameterName=Device profile
  462. ObjectType=0x7
  463. ;StorageLocation=ROM
  464. DataType=0x0005
  465. AccessType=rw
  466. DefaultValue=0x00
  467. PDOMapping=0
  468. [1029sub6]
  469. ParameterName=Manufacturer specific
  470. ObjectType=0x7
  471. ;StorageLocation=ROM
  472. DataType=0x0005
  473. AccessType=rw
  474. DefaultValue=0x00
  475. PDOMapping=0
  476. [1200]
  477. ParameterName=SDO server parameter
  478. ObjectType=0x9
  479. ;StorageLocation=ROM
  480. SubNumber=0x3
  481. [1200sub0]
  482. ParameterName=max sub-index
  483. ObjectType=0x7
  484. ;StorageLocation=ROM
  485. DataType=0x0005
  486. AccessType=ro
  487. DefaultValue=2
  488. PDOMapping=0
  489. [1200sub1]
  490. ParameterName=COB-ID client to server
  491. ObjectType=0x7
  492. ;StorageLocation=ROM
  493. DataType=0x0007
  494. AccessType=ro
  495. DefaultValue=$NODEID+0x600
  496. PDOMapping=0
  497. [1200sub2]
  498. ParameterName=COB-ID server to client
  499. ObjectType=0x7
  500. ;StorageLocation=ROM
  501. DataType=0x0007
  502. AccessType=ro
  503. DefaultValue=$NODEID+0x580
  504. PDOMapping=0
  505. [1400]
  506. ParameterName=RPDO communication parameter
  507. ObjectType=0x9
  508. ;StorageLocation=ROM
  509. SubNumber=0x3
  510. [1400sub0]
  511. ParameterName=max sub-index
  512. ObjectType=0x7
  513. ;StorageLocation=ROM
  514. DataType=0x0005
  515. AccessType=ro
  516. DefaultValue=2
  517. PDOMapping=0
  518. [1400sub1]
  519. ParameterName=COB-ID used by RPDO
  520. ObjectType=0x7
  521. ;StorageLocation=ROM
  522. DataType=0x0007
  523. AccessType=rw
  524. DefaultValue=$NODEID+0x200
  525. PDOMapping=0
  526. [1400sub2]
  527. ParameterName=transmission type
  528. ObjectType=0x7
  529. ;StorageLocation=ROM
  530. DataType=0x0005
  531. AccessType=rw
  532. DefaultValue=254
  533. PDOMapping=0
  534. [1401]
  535. ParameterName=RPDO communication parameter
  536. ObjectType=0x9
  537. ;StorageLocation=ROM
  538. SubNumber=0x3
  539. [1401sub0]
  540. ParameterName=max sub-index
  541. ObjectType=0x7
  542. ;StorageLocation=ROM
  543. DataType=0x0005
  544. AccessType=ro
  545. DefaultValue=2
  546. PDOMapping=0
  547. [1401sub1]
  548. ParameterName=COB-ID used by RPDO
  549. ObjectType=0x7
  550. ;StorageLocation=ROM
  551. DataType=0x0007
  552. AccessType=rw
  553. DefaultValue=$NODEID+0x300
  554. PDOMapping=0
  555. [1401sub2]
  556. ParameterName=transmission type
  557. ObjectType=0x7
  558. ;StorageLocation=ROM
  559. DataType=0x0005
  560. AccessType=rw
  561. DefaultValue=254
  562. PDOMapping=0
  563. [1402]
  564. ParameterName=RPDO communication parameter
  565. ObjectType=0x9
  566. ;StorageLocation=ROM
  567. SubNumber=0x3
  568. [1402sub0]
  569. ParameterName=max sub-index
  570. ObjectType=0x7
  571. ;StorageLocation=ROM
  572. DataType=0x0005
  573. AccessType=ro
  574. DefaultValue=2
  575. PDOMapping=0
  576. [1402sub1]
  577. ParameterName=COB-ID used by RPDO
  578. ObjectType=0x7
  579. ;StorageLocation=ROM
  580. DataType=0x0007
  581. AccessType=rw
  582. DefaultValue=$NODEID+0x400
  583. PDOMapping=0
  584. [1402sub2]
  585. ParameterName=transmission type
  586. ObjectType=0x7
  587. ;StorageLocation=ROM
  588. DataType=0x0005
  589. AccessType=rw
  590. DefaultValue=254
  591. PDOMapping=0
  592. [1403]
  593. ParameterName=RPDO communication parameter
  594. ObjectType=0x9
  595. ;StorageLocation=ROM
  596. SubNumber=0x3
  597. [1403sub0]
  598. ParameterName=max sub-index
  599. ObjectType=0x7
  600. ;StorageLocation=ROM
  601. DataType=0x0005
  602. AccessType=ro
  603. DefaultValue=2
  604. PDOMapping=0
  605. [1403sub1]
  606. ParameterName=COB-ID used by RPDO
  607. ObjectType=0x7
  608. ;StorageLocation=ROM
  609. DataType=0x0007
  610. AccessType=rw
  611. DefaultValue=$NODEID+0x500
  612. PDOMapping=0
  613. [1403sub2]
  614. ParameterName=transmission type
  615. ObjectType=0x7
  616. ;StorageLocation=ROM
  617. DataType=0x0005
  618. AccessType=rw
  619. DefaultValue=254
  620. PDOMapping=0
  621. [1600]
  622. ParameterName=RPDO mapping parameter
  623. ObjectType=0x9
  624. ;StorageLocation=ROM
  625. SubNumber=0x9
  626. [1600sub0]
  627. ParameterName=Number of mapped objects
  628. ObjectType=0x7
  629. ;StorageLocation=ROM
  630. DataType=0x0005
  631. AccessType=rw
  632. DefaultValue=0
  633. PDOMapping=0
  634. [1600sub1]
  635. ParameterName=mapped object 1
  636. ObjectType=0x7
  637. ;StorageLocation=ROM
  638. DataType=0x0007
  639. AccessType=rw
  640. DefaultValue=0x00000000
  641. PDOMapping=0
  642. [1600sub2]
  643. ParameterName=mapped object 2
  644. ObjectType=0x7
  645. ;StorageLocation=ROM
  646. DataType=0x0007
  647. AccessType=rw
  648. DefaultValue=0x00000000
  649. PDOMapping=0
  650. [1600sub3]
  651. ParameterName=mapped object 3
  652. ObjectType=0x7
  653. ;StorageLocation=ROM
  654. DataType=0x0007
  655. AccessType=rw
  656. DefaultValue=0x00000000
  657. PDOMapping=0
  658. [1600sub4]
  659. ParameterName=mapped object 4
  660. ObjectType=0x7
  661. ;StorageLocation=ROM
  662. DataType=0x0007
  663. AccessType=rw
  664. DefaultValue=0x00000000
  665. PDOMapping=0
  666. [1600sub5]
  667. ParameterName=mapped object 5
  668. ObjectType=0x7
  669. ;StorageLocation=ROM
  670. DataType=0x0007
  671. AccessType=rw
  672. DefaultValue=0x00000000
  673. PDOMapping=0
  674. [1600sub6]
  675. ParameterName=mapped object 6
  676. ObjectType=0x7
  677. ;StorageLocation=ROM
  678. DataType=0x0007
  679. AccessType=rw
  680. DefaultValue=0x00000000
  681. PDOMapping=0
  682. [1600sub7]
  683. ParameterName=mapped object 7
  684. ObjectType=0x7
  685. ;StorageLocation=ROM
  686. DataType=0x0007
  687. AccessType=rw
  688. DefaultValue=0x00000000
  689. PDOMapping=0
  690. [1600sub8]
  691. ParameterName=mapped object 8
  692. ObjectType=0x7
  693. ;StorageLocation=ROM
  694. DataType=0x0007
  695. AccessType=rw
  696. DefaultValue=0x00000000
  697. PDOMapping=0
  698. [1601]
  699. ParameterName=RPDO mapping parameter
  700. ObjectType=0x9
  701. ;StorageLocation=ROM
  702. SubNumber=0x9
  703. [1601sub0]
  704. ParameterName=Number of mapped objects
  705. ObjectType=0x7
  706. ;StorageLocation=ROM
  707. DataType=0x0005
  708. AccessType=rw
  709. DefaultValue=0
  710. PDOMapping=0
  711. [1601sub1]
  712. ParameterName=mapped object 1
  713. ObjectType=0x7
  714. ;StorageLocation=ROM
  715. DataType=0x0007
  716. AccessType=rw
  717. DefaultValue=0x00000000
  718. PDOMapping=0
  719. [1601sub2]
  720. ParameterName=mapped object 2
  721. ObjectType=0x7
  722. ;StorageLocation=ROM
  723. DataType=0x0007
  724. AccessType=rw
  725. DefaultValue=0x00000000
  726. PDOMapping=0
  727. [1601sub3]
  728. ParameterName=mapped object 3
  729. ObjectType=0x7
  730. ;StorageLocation=ROM
  731. DataType=0x0007
  732. AccessType=rw
  733. DefaultValue=0x00000000
  734. PDOMapping=0
  735. [1601sub4]
  736. ParameterName=mapped object 4
  737. ObjectType=0x7
  738. ;StorageLocation=ROM
  739. DataType=0x0007
  740. AccessType=rw
  741. DefaultValue=0x00000000
  742. PDOMapping=0
  743. [1601sub5]
  744. ParameterName=mapped object 5
  745. ObjectType=0x7
  746. ;StorageLocation=ROM
  747. DataType=0x0007
  748. AccessType=rw
  749. DefaultValue=0x00000000
  750. PDOMapping=0
  751. [1601sub6]
  752. ParameterName=mapped object 6
  753. ObjectType=0x7
  754. ;StorageLocation=ROM
  755. DataType=0x0007
  756. AccessType=rw
  757. DefaultValue=0x00000000
  758. PDOMapping=0
  759. [1601sub7]
  760. ParameterName=mapped object 7
  761. ObjectType=0x7
  762. ;StorageLocation=ROM
  763. DataType=0x0007
  764. AccessType=rw
  765. DefaultValue=0x00000000
  766. PDOMapping=0
  767. [1601sub8]
  768. ParameterName=mapped object 8
  769. ObjectType=0x7
  770. ;StorageLocation=ROM
  771. DataType=0x0007
  772. AccessType=rw
  773. DefaultValue=0x00000000
  774. PDOMapping=0
  775. [1602]
  776. ParameterName=RPDO mapping parameter
  777. ObjectType=0x9
  778. ;StorageLocation=ROM
  779. SubNumber=0x9
  780. [1602sub0]
  781. ParameterName=Number of mapped objects
  782. ObjectType=0x7
  783. ;StorageLocation=ROM
  784. DataType=0x0005
  785. AccessType=rw
  786. DefaultValue=0
  787. PDOMapping=0
  788. [1602sub1]
  789. ParameterName=mapped object 1
  790. ObjectType=0x7
  791. ;StorageLocation=ROM
  792. DataType=0x0007
  793. AccessType=rw
  794. DefaultValue=0x00000000
  795. PDOMapping=0
  796. [1602sub2]
  797. ParameterName=mapped object 2
  798. ObjectType=0x7
  799. ;StorageLocation=ROM
  800. DataType=0x0007
  801. AccessType=rw
  802. DefaultValue=0x00000000
  803. PDOMapping=0
  804. [1602sub3]
  805. ParameterName=mapped object 3
  806. ObjectType=0x7
  807. ;StorageLocation=ROM
  808. DataType=0x0007
  809. AccessType=rw
  810. DefaultValue=0x00000000
  811. PDOMapping=0
  812. [1602sub4]
  813. ParameterName=mapped object 4
  814. ObjectType=0x7
  815. ;StorageLocation=ROM
  816. DataType=0x0007
  817. AccessType=rw
  818. DefaultValue=0x00000000
  819. PDOMapping=0
  820. [1602sub5]
  821. ParameterName=mapped object 5
  822. ObjectType=0x7
  823. ;StorageLocation=ROM
  824. DataType=0x0007
  825. AccessType=rw
  826. DefaultValue=0x00000000
  827. PDOMapping=0
  828. [1602sub6]
  829. ParameterName=mapped object 6
  830. ObjectType=0x7
  831. ;StorageLocation=ROM
  832. DataType=0x0007
  833. AccessType=rw
  834. DefaultValue=0x00000000
  835. PDOMapping=0
  836. [1602sub7]
  837. ParameterName=mapped object 7
  838. ObjectType=0x7
  839. ;StorageLocation=ROM
  840. DataType=0x0007
  841. AccessType=rw
  842. DefaultValue=0x00000000
  843. PDOMapping=0
  844. [1602sub8]
  845. ParameterName=mapped object 8
  846. ObjectType=0x7
  847. ;StorageLocation=ROM
  848. DataType=0x0007
  849. AccessType=rw
  850. DefaultValue=0x00000000
  851. PDOMapping=0
  852. [1603]
  853. ParameterName=RPDO mapping parameter
  854. ObjectType=0x9
  855. ;StorageLocation=ROM
  856. SubNumber=0x9
  857. [1603sub0]
  858. ParameterName=Number of mapped objects
  859. ObjectType=0x7
  860. ;StorageLocation=ROM
  861. DataType=0x0005
  862. AccessType=rw
  863. DefaultValue=0
  864. PDOMapping=0
  865. [1603sub1]
  866. ParameterName=mapped object 1
  867. ObjectType=0x7
  868. ;StorageLocation=ROM
  869. DataType=0x0007
  870. AccessType=rw
  871. DefaultValue=0x00000000
  872. PDOMapping=0
  873. [1603sub2]
  874. ParameterName=mapped object 2
  875. ObjectType=0x7
  876. ;StorageLocation=ROM
  877. DataType=0x0007
  878. AccessType=rw
  879. DefaultValue=0x00000000
  880. PDOMapping=0
  881. [1603sub3]
  882. ParameterName=mapped object 3
  883. ObjectType=0x7
  884. ;StorageLocation=ROM
  885. DataType=0x0007
  886. AccessType=rw
  887. DefaultValue=0x00000000
  888. PDOMapping=0
  889. [1603sub4]
  890. ParameterName=mapped object 4
  891. ObjectType=0x7
  892. ;StorageLocation=ROM
  893. DataType=0x0007
  894. AccessType=rw
  895. DefaultValue=0x00000000
  896. PDOMapping=0
  897. [1603sub5]
  898. ParameterName=mapped object 5
  899. ObjectType=0x7
  900. ;StorageLocation=ROM
  901. DataType=0x0007
  902. AccessType=rw
  903. DefaultValue=0x00000000
  904. PDOMapping=0
  905. [1603sub6]
  906. ParameterName=mapped object 6
  907. ObjectType=0x7
  908. ;StorageLocation=ROM
  909. DataType=0x0007
  910. AccessType=rw
  911. DefaultValue=0x00000000
  912. PDOMapping=0
  913. [1603sub7]
  914. ParameterName=mapped object 7
  915. ObjectType=0x7
  916. ;StorageLocation=ROM
  917. DataType=0x0007
  918. AccessType=rw
  919. DefaultValue=0x00000000
  920. PDOMapping=0
  921. [1603sub8]
  922. ParameterName=mapped object 8
  923. ObjectType=0x7
  924. ;StorageLocation=ROM
  925. DataType=0x0007
  926. AccessType=rw
  927. DefaultValue=0x00000000
  928. PDOMapping=0
  929. [1800]
  930. ParameterName=TPDO communication parameter
  931. ObjectType=0x9
  932. ;StorageLocation=ROM
  933. SubNumber=0x7
  934. [1800sub0]
  935. ParameterName=max sub-index
  936. ObjectType=0x7
  937. ;StorageLocation=ROM
  938. DataType=0x0005
  939. AccessType=ro
  940. DefaultValue=6
  941. PDOMapping=0
  942. [1800sub1]
  943. ParameterName=COB-ID used by TPDO
  944. ObjectType=0x7
  945. ;StorageLocation=ROM
  946. DataType=0x0007
  947. AccessType=rw
  948. DefaultValue=$NODEID+0x180
  949. PDOMapping=0
  950. [1800sub2]
  951. ParameterName=transmission type
  952. ObjectType=0x7
  953. ;StorageLocation=ROM
  954. DataType=0x0005
  955. AccessType=rw
  956. DefaultValue=254
  957. PDOMapping=0
  958. [1800sub3]
  959. ParameterName=inhibit time
  960. ObjectType=0x7
  961. ;StorageLocation=ROM
  962. DataType=0x0006
  963. AccessType=rw
  964. DefaultValue=0
  965. PDOMapping=0
  966. [1800sub4]
  967. ParameterName=compatibility entry
  968. ObjectType=0x7
  969. ;StorageLocation=ROM
  970. DataType=0x0005
  971. AccessType=ro
  972. DefaultValue=0
  973. PDOMapping=0
  974. [1800sub5]
  975. ParameterName=event timer
  976. ObjectType=0x7
  977. ;StorageLocation=ROM
  978. DataType=0x0006
  979. AccessType=rw
  980. DefaultValue=0
  981. PDOMapping=0
  982. [1800sub6]
  983. ParameterName=SYNC start value
  984. ObjectType=0x7
  985. ;StorageLocation=ROM
  986. DataType=0x0005
  987. AccessType=rw
  988. DefaultValue=0
  989. PDOMapping=0
  990. [1801]
  991. ParameterName=TPDO communication parameter
  992. ObjectType=0x9
  993. ;StorageLocation=ROM
  994. SubNumber=0x7
  995. [1801sub0]
  996. ParameterName=max sub-index
  997. ObjectType=0x7
  998. ;StorageLocation=ROM
  999. DataType=0x0005
  1000. AccessType=ro
  1001. DefaultValue=6
  1002. PDOMapping=0
  1003. [1801sub1]
  1004. ParameterName=COB-ID used by TPDO
  1005. ObjectType=0x7
  1006. ;StorageLocation=ROM
  1007. DataType=0x0007
  1008. AccessType=rw
  1009. DefaultValue=$NODEID+0x280
  1010. PDOMapping=0
  1011. [1801sub2]
  1012. ParameterName=transmission type
  1013. ObjectType=0x7
  1014. ;StorageLocation=ROM
  1015. DataType=0x0005
  1016. AccessType=rw
  1017. DefaultValue=254
  1018. PDOMapping=0
  1019. [1801sub3]
  1020. ParameterName=inhibit time
  1021. ObjectType=0x7
  1022. ;StorageLocation=ROM
  1023. DataType=0x0006
  1024. AccessType=rw
  1025. DefaultValue=0
  1026. PDOMapping=0
  1027. [1801sub4]
  1028. ParameterName=compatibility entry
  1029. ObjectType=0x7
  1030. ;StorageLocation=ROM
  1031. DataType=0x0005
  1032. AccessType=ro
  1033. DefaultValue=0
  1034. PDOMapping=0
  1035. [1801sub5]
  1036. ParameterName=event timer
  1037. ObjectType=0x7
  1038. ;StorageLocation=ROM
  1039. DataType=0x0006
  1040. AccessType=rw
  1041. DefaultValue=0
  1042. PDOMapping=0
  1043. [1801sub6]
  1044. ParameterName=SYNC start value
  1045. ObjectType=0x7
  1046. ;StorageLocation=ROM
  1047. DataType=0x0005
  1048. AccessType=rw
  1049. DefaultValue=0
  1050. PDOMapping=0
  1051. [1802]
  1052. ParameterName=TPDO communication parameter
  1053. ObjectType=0x9
  1054. ;StorageLocation=ROM
  1055. SubNumber=0x7
  1056. [1802sub0]
  1057. ParameterName=max sub-index
  1058. ObjectType=0x7
  1059. ;StorageLocation=ROM
  1060. DataType=0x0005
  1061. AccessType=ro
  1062. DefaultValue=6
  1063. PDOMapping=0
  1064. [1802sub1]
  1065. ParameterName=COB-ID used by TPDO
  1066. ObjectType=0x7
  1067. ;StorageLocation=ROM
  1068. DataType=0x0007
  1069. AccessType=rw
  1070. DefaultValue=$NODEID+0x380
  1071. PDOMapping=0
  1072. [1802sub2]
  1073. ParameterName=transmission type
  1074. ObjectType=0x7
  1075. ;StorageLocation=ROM
  1076. DataType=0x0005
  1077. AccessType=rw
  1078. DefaultValue=254
  1079. PDOMapping=0
  1080. [1802sub3]
  1081. ParameterName=inhibit time
  1082. ObjectType=0x7
  1083. ;StorageLocation=ROM
  1084. DataType=0x0006
  1085. AccessType=rw
  1086. DefaultValue=0
  1087. PDOMapping=0
  1088. [1802sub4]
  1089. ParameterName=compatibility entry
  1090. ObjectType=0x7
  1091. ;StorageLocation=ROM
  1092. DataType=0x0005
  1093. AccessType=ro
  1094. DefaultValue=0
  1095. PDOMapping=0
  1096. [1802sub5]
  1097. ParameterName=event timer
  1098. ObjectType=0x7
  1099. ;StorageLocation=ROM
  1100. DataType=0x0006
  1101. AccessType=rw
  1102. DefaultValue=0
  1103. PDOMapping=0
  1104. [1802sub6]
  1105. ParameterName=SYNC start value
  1106. ObjectType=0x7
  1107. ;StorageLocation=ROM
  1108. DataType=0x0005
  1109. AccessType=rw
  1110. DefaultValue=0
  1111. PDOMapping=0
  1112. [1803]
  1113. ParameterName=TPDO communication parameter
  1114. ObjectType=0x9
  1115. ;StorageLocation=ROM
  1116. SubNumber=0x7
  1117. [1803sub0]
  1118. ParameterName=max sub-index
  1119. ObjectType=0x7
  1120. ;StorageLocation=ROM
  1121. DataType=0x0005
  1122. AccessType=ro
  1123. DefaultValue=6
  1124. PDOMapping=0
  1125. [1803sub1]
  1126. ParameterName=COB-ID used by TPDO
  1127. ObjectType=0x7
  1128. ;StorageLocation=ROM
  1129. DataType=0x0007
  1130. AccessType=rw
  1131. DefaultValue=$NODEID+0x480
  1132. PDOMapping=0
  1133. [1803sub2]
  1134. ParameterName=transmission type
  1135. ObjectType=0x7
  1136. ;StorageLocation=ROM
  1137. DataType=0x0005
  1138. AccessType=rw
  1139. DefaultValue=254
  1140. PDOMapping=0
  1141. [1803sub3]
  1142. ParameterName=inhibit time
  1143. ObjectType=0x7
  1144. ;StorageLocation=ROM
  1145. DataType=0x0006
  1146. AccessType=rw
  1147. DefaultValue=0
  1148. PDOMapping=0
  1149. [1803sub4]
  1150. ParameterName=compatibility entry
  1151. ObjectType=0x7
  1152. ;StorageLocation=ROM
  1153. DataType=0x0005
  1154. AccessType=ro
  1155. DefaultValue=0
  1156. PDOMapping=0
  1157. [1803sub5]
  1158. ParameterName=event timer
  1159. ObjectType=0x7
  1160. ;StorageLocation=ROM
  1161. DataType=0x0006
  1162. AccessType=rw
  1163. DefaultValue=0
  1164. PDOMapping=0
  1165. [1803sub6]
  1166. ParameterName=SYNC start value
  1167. ObjectType=0x7
  1168. ;StorageLocation=ROM
  1169. DataType=0x0005
  1170. AccessType=rw
  1171. DefaultValue=0
  1172. PDOMapping=0
  1173. [1A00]
  1174. ParameterName=TPDO mapping parameter
  1175. ObjectType=0x9
  1176. ;StorageLocation=ROM
  1177. SubNumber=0x9
  1178. [1A00sub0]
  1179. ParameterName=Number of mapped objects
  1180. ObjectType=0x7
  1181. ;StorageLocation=ROM
  1182. DataType=0x0005
  1183. AccessType=rw
  1184. DefaultValue=0
  1185. PDOMapping=0
  1186. [1A00sub1]
  1187. ParameterName=mapped object 1
  1188. ObjectType=0x7
  1189. ;StorageLocation=ROM
  1190. DataType=0x0007
  1191. AccessType=rw
  1192. DefaultValue=0x00000000
  1193. PDOMapping=0
  1194. [1A00sub2]
  1195. ParameterName=mapped object 2
  1196. ObjectType=0x7
  1197. ;StorageLocation=ROM
  1198. DataType=0x0007
  1199. AccessType=rw
  1200. DefaultValue=0x00000000
  1201. PDOMapping=0
  1202. [1A00sub3]
  1203. ParameterName=mapped object 3
  1204. ObjectType=0x7
  1205. ;StorageLocation=ROM
  1206. DataType=0x0007
  1207. AccessType=rw
  1208. DefaultValue=0x00000000
  1209. PDOMapping=0
  1210. [1A00sub4]
  1211. ParameterName=mapped object 4
  1212. ObjectType=0x7
  1213. ;StorageLocation=ROM
  1214. DataType=0x0007
  1215. AccessType=rw
  1216. DefaultValue=0x00000000
  1217. PDOMapping=0
  1218. [1A00sub5]
  1219. ParameterName=mapped object 5
  1220. ObjectType=0x7
  1221. ;StorageLocation=ROM
  1222. DataType=0x0007
  1223. AccessType=rw
  1224. DefaultValue=0x00000000
  1225. PDOMapping=0
  1226. [1A00sub6]
  1227. ParameterName=mapped object 6
  1228. ObjectType=0x7
  1229. ;StorageLocation=ROM
  1230. DataType=0x0007
  1231. AccessType=rw
  1232. DefaultValue=0x00000000
  1233. PDOMapping=0
  1234. [1A00sub7]
  1235. ParameterName=mapped object 7
  1236. ObjectType=0x7
  1237. ;StorageLocation=ROM
  1238. DataType=0x0007
  1239. AccessType=rw
  1240. DefaultValue=0x00000000
  1241. PDOMapping=0
  1242. [1A00sub8]
  1243. ParameterName=mapped object 8
  1244. ObjectType=0x7
  1245. ;StorageLocation=ROM
  1246. DataType=0x0007
  1247. AccessType=rw
  1248. DefaultValue=0x00000000
  1249. PDOMapping=0
  1250. [1A01]
  1251. ParameterName=TPDO mapping parameter
  1252. ObjectType=0x9
  1253. ;StorageLocation=ROM
  1254. SubNumber=0x9
  1255. [1A01sub0]
  1256. ParameterName=Number of mapped objects
  1257. ObjectType=0x7
  1258. ;StorageLocation=ROM
  1259. DataType=0x0005
  1260. AccessType=rw
  1261. DefaultValue=0
  1262. PDOMapping=0
  1263. [1A01sub1]
  1264. ParameterName=mapped object 1
  1265. ObjectType=0x7
  1266. ;StorageLocation=ROM
  1267. DataType=0x0007
  1268. AccessType=rw
  1269. DefaultValue=0x00000000
  1270. PDOMapping=0
  1271. [1A01sub2]
  1272. ParameterName=mapped object 2
  1273. ObjectType=0x7
  1274. ;StorageLocation=ROM
  1275. DataType=0x0007
  1276. AccessType=rw
  1277. DefaultValue=0x00000000
  1278. PDOMapping=0
  1279. [1A01sub3]
  1280. ParameterName=mapped object 3
  1281. ObjectType=0x7
  1282. ;StorageLocation=ROM
  1283. DataType=0x0007
  1284. AccessType=rw
  1285. DefaultValue=0x00000000
  1286. PDOMapping=0
  1287. [1A01sub4]
  1288. ParameterName=mapped object 4
  1289. ObjectType=0x7
  1290. ;StorageLocation=ROM
  1291. DataType=0x0007
  1292. AccessType=rw
  1293. DefaultValue=0x00000000
  1294. PDOMapping=0
  1295. [1A01sub5]
  1296. ParameterName=mapped object 5
  1297. ObjectType=0x7
  1298. ;StorageLocation=ROM
  1299. DataType=0x0007
  1300. AccessType=rw
  1301. DefaultValue=0x00000000
  1302. PDOMapping=0
  1303. [1A01sub6]
  1304. ParameterName=mapped object 6
  1305. ObjectType=0x7
  1306. ;StorageLocation=ROM
  1307. DataType=0x0007
  1308. AccessType=rw
  1309. DefaultValue=0x00000000
  1310. PDOMapping=0
  1311. [1A01sub7]
  1312. ParameterName=mapped object 7
  1313. ObjectType=0x7
  1314. ;StorageLocation=ROM
  1315. DataType=0x0007
  1316. AccessType=rw
  1317. DefaultValue=0x00000000
  1318. PDOMapping=0
  1319. [1A01sub8]
  1320. ParameterName=mapped object 8
  1321. ObjectType=0x7
  1322. ;StorageLocation=ROM
  1323. DataType=0x0007
  1324. AccessType=rw
  1325. DefaultValue=0x00000000
  1326. PDOMapping=0
  1327. [1A02]
  1328. ParameterName=TPDO mapping parameter
  1329. ObjectType=0x9
  1330. ;StorageLocation=ROM
  1331. SubNumber=0x9
  1332. [1A02sub0]
  1333. ParameterName=Number of mapped objects
  1334. ObjectType=0x7
  1335. ;StorageLocation=ROM
  1336. DataType=0x0005
  1337. AccessType=rw
  1338. DefaultValue=0
  1339. PDOMapping=0
  1340. [1A02sub1]
  1341. ParameterName=mapped object 1
  1342. ObjectType=0x7
  1343. ;StorageLocation=ROM
  1344. DataType=0x0007
  1345. AccessType=rw
  1346. DefaultValue=0x00000000
  1347. PDOMapping=0
  1348. [1A02sub2]
  1349. ParameterName=mapped object 2
  1350. ObjectType=0x7
  1351. ;StorageLocation=ROM
  1352. DataType=0x0007
  1353. AccessType=rw
  1354. DefaultValue=0x00000000
  1355. PDOMapping=0
  1356. [1A02sub3]
  1357. ParameterName=mapped object 3
  1358. ObjectType=0x7
  1359. ;StorageLocation=ROM
  1360. DataType=0x0007
  1361. AccessType=rw
  1362. DefaultValue=0x00000000
  1363. PDOMapping=0
  1364. [1A02sub4]
  1365. ParameterName=mapped object 4
  1366. ObjectType=0x7
  1367. ;StorageLocation=ROM
  1368. DataType=0x0007
  1369. AccessType=rw
  1370. DefaultValue=0x00000000
  1371. PDOMapping=0
  1372. [1A02sub5]
  1373. ParameterName=mapped object 5
  1374. ObjectType=0x7
  1375. ;StorageLocation=ROM
  1376. DataType=0x0007
  1377. AccessType=rw
  1378. DefaultValue=0x00000000
  1379. PDOMapping=0
  1380. [1A02sub6]
  1381. ParameterName=mapped object 6
  1382. ObjectType=0x7
  1383. ;StorageLocation=ROM
  1384. DataType=0x0007
  1385. AccessType=rw
  1386. DefaultValue=0x00000000
  1387. PDOMapping=0
  1388. [1A02sub7]
  1389. ParameterName=mapped object 7
  1390. ObjectType=0x7
  1391. ;StorageLocation=ROM
  1392. DataType=0x0007
  1393. AccessType=rw
  1394. DefaultValue=0x00000000
  1395. PDOMapping=0
  1396. [1A02sub8]
  1397. ParameterName=mapped object 8
  1398. ObjectType=0x7
  1399. ;StorageLocation=ROM
  1400. DataType=0x0007
  1401. AccessType=rw
  1402. DefaultValue=0x00000000
  1403. PDOMapping=0
  1404. [1A03]
  1405. ParameterName=TPDO mapping parameter
  1406. ObjectType=0x9
  1407. ;StorageLocation=ROM
  1408. SubNumber=0x9
  1409. [1A03sub0]
  1410. ParameterName=Number of mapped objects
  1411. ObjectType=0x7
  1412. ;StorageLocation=ROM
  1413. DataType=0x0005
  1414. AccessType=rw
  1415. DefaultValue=0
  1416. PDOMapping=0
  1417. [1A03sub1]
  1418. ParameterName=mapped object 1
  1419. ObjectType=0x7
  1420. ;StorageLocation=ROM
  1421. DataType=0x0007
  1422. AccessType=rw
  1423. DefaultValue=0x00000000
  1424. PDOMapping=0
  1425. [1A03sub2]
  1426. ParameterName=mapped object 2
  1427. ObjectType=0x7
  1428. ;StorageLocation=ROM
  1429. DataType=0x0007
  1430. AccessType=rw
  1431. DefaultValue=0x00000000
  1432. PDOMapping=0
  1433. [1A03sub3]
  1434. ParameterName=mapped object 3
  1435. ObjectType=0x7
  1436. ;StorageLocation=ROM
  1437. DataType=0x0007
  1438. AccessType=rw
  1439. DefaultValue=0x00000000
  1440. PDOMapping=0
  1441. [1A03sub4]
  1442. ParameterName=mapped object 4
  1443. ObjectType=0x7
  1444. ;StorageLocation=ROM
  1445. DataType=0x0007
  1446. AccessType=rw
  1447. DefaultValue=0x00000000
  1448. PDOMapping=0
  1449. [1A03sub5]
  1450. ParameterName=mapped object 5
  1451. ObjectType=0x7
  1452. ;StorageLocation=ROM
  1453. DataType=0x0007
  1454. AccessType=rw
  1455. DefaultValue=0x00000000
  1456. PDOMapping=0
  1457. [1A03sub6]
  1458. ParameterName=mapped object 6
  1459. ObjectType=0x7
  1460. ;StorageLocation=ROM
  1461. DataType=0x0007
  1462. AccessType=rw
  1463. DefaultValue=0x00000000
  1464. PDOMapping=0
  1465. [1A03sub7]
  1466. ParameterName=mapped object 7
  1467. ObjectType=0x7
  1468. ;StorageLocation=ROM
  1469. DataType=0x0007
  1470. AccessType=rw
  1471. DefaultValue=0x00000000
  1472. PDOMapping=0
  1473. [1A03sub8]
  1474. ParameterName=mapped object 8
  1475. ObjectType=0x7
  1476. ;StorageLocation=ROM
  1477. DataType=0x0007
  1478. AccessType=rw
  1479. DefaultValue=0x00000000
  1480. PDOMapping=0
  1481. [1F50]
  1482. ParameterName=Program data
  1483. ObjectType=0x8
  1484. ;StorageLocation=RAM
  1485. SubNumber=0x2
  1486. [1F50sub0]
  1487. ParameterName=max sub-index
  1488. ObjectType=0x7
  1489. ;StorageLocation=RAM
  1490. DataType=0x0005
  1491. AccessType=ro
  1492. DefaultValue=1
  1493. PDOMapping=0
  1494. [1F50sub1]
  1495. ParameterName=
  1496. ObjectType=0x7
  1497. ;StorageLocation=RAM
  1498. DataType=0x000F
  1499. AccessType=wo
  1500. DefaultValue=
  1501. PDOMapping=0
  1502. [1F51]
  1503. ParameterName=Program control
  1504. ObjectType=0x8
  1505. ;StorageLocation=RAM
  1506. SubNumber=0x2
  1507. [1F51sub0]
  1508. ParameterName=max sub-index
  1509. ObjectType=0x7
  1510. ;StorageLocation=RAM
  1511. DataType=0x0005
  1512. AccessType=ro
  1513. DefaultValue=1
  1514. PDOMapping=0
  1515. [1F51sub1]
  1516. ParameterName=
  1517. ObjectType=0x7
  1518. ;StorageLocation=RAM
  1519. DataType=0x0005
  1520. AccessType=rw
  1521. DefaultValue=
  1522. PDOMapping=0
  1523. [1F56]
  1524. ParameterName=Program software identification
  1525. ObjectType=0x8
  1526. ;StorageLocation=RAM
  1527. SubNumber=0x2
  1528. [1F56sub0]
  1529. ParameterName=max sub-index
  1530. ObjectType=0x7
  1531. ;StorageLocation=RAM
  1532. DataType=0x0005
  1533. AccessType=ro
  1534. DefaultValue=1
  1535. PDOMapping=0
  1536. [1F56sub1]
  1537. ParameterName=
  1538. ObjectType=0x7
  1539. ;StorageLocation=RAM
  1540. DataType=0x0007
  1541. AccessType=ro
  1542. DefaultValue=
  1543. PDOMapping=0
  1544. [1F57]
  1545. ParameterName=Flash status identification
  1546. ObjectType=0x8
  1547. ;StorageLocation=RAM
  1548. SubNumber=0x2
  1549. [1F57sub0]
  1550. ParameterName=max sub-index
  1551. ObjectType=0x7
  1552. ;StorageLocation=RAM
  1553. DataType=0x0005
  1554. AccessType=ro
  1555. DefaultValue=1
  1556. PDOMapping=0
  1557. [1F57sub1]
  1558. ParameterName=
  1559. ObjectType=0x7
  1560. ;StorageLocation=RAM
  1561. DataType=0x0007
  1562. AccessType=ro
  1563. DefaultValue=
  1564. PDOMapping=0
  1565. [1F80]
  1566. ParameterName=NMT startup
  1567. ObjectType=0x7
  1568. ;StorageLocation=ROM
  1569. DataType=0x0007
  1570. AccessType=rw
  1571. DefaultValue=0x00000000
  1572. PDOMapping=0
  1573. [ManufacturerObjects]
  1574. SupportedObjects=3
  1575. 1=0x2100
  1576. 2=0x2101
  1577. 3=0x2102
  1578. [2100]
  1579. ParameterName=Error status bits
  1580. ObjectType=0x7
  1581. ;StorageLocation=RAM
  1582. DataType=0x000A
  1583. AccessType=ro
  1584. DefaultValue=00000000000000000000
  1585. PDOMapping=1
  1586. [2101]
  1587. ParameterName=Power-on counter
  1588. ObjectType=0x7
  1589. ;StorageLocation=EEPROM
  1590. DataType=0x0007
  1591. AccessType=ro
  1592. DefaultValue=0
  1593. PDOMapping=1
  1594. [2102]
  1595. ParameterName=Button press counter
  1596. ObjectType=0x7
  1597. ;StorageLocation=RAM
  1598. DataType=0x0007
  1599. AccessType=rw
  1600. DefaultValue=0
  1601. PDOMapping=1