Tier III Syscodes decode into data

Status
Not open for further replies.

headshot149

Member
Joined
Feb 22, 2010
Messages
12
Location
Slovenia
Hello i dont know how to get data from my syscode 11.10.0000001010

  1. DMR TIII handling
  2. -----------------
  3. Tier III control channels broadcast a 14 bit identifier that indicates
  4. the network model (tiny/small/large/huge), network ID, service area
  5. and site number for the current site and for neighboring sites.
  6. Many TIII DMR systems are set up using these programming defaults:
  7. large network (uses a 4 bit NID field)
  8. NID = 13
  9. Service area field length: 5 bits
  10. Site number field length: 3 bits
  11. Physical sites are typically assigned unique area numbers (1, 2, 3, ...)
  12. while their site numbers are all set to 1. So odds are good that any network
  13. you find will have sites with area.site values of 1.1, 2.1, 3.1, etc.
  14. When -v3 or higher is used, DSD+ will display a site's 14 bit "SysCode" in binary.
  15. Example:
  16. CSBK Aloha SysCode=10.1100.00010000
  17. 11.10.0000001010
  18. The first two bits encode the network model value. Here, 10 (11) = large model.
  19. The next set of digits encodes the network ID. A zero value is used for NID 1,
  20. so here, 1100 = 12 = NID 13.
  21. The last set of digits encodes the area number and the site number.
  22. Since these two fields do not have a fixed length, DSD+ cannot automatically
  23. decode them. The dividing line between the two fields is selected when the
  24. network is created. This is similar to the variability found in Motorola Type I
  25. fleetmaps.
  26. To determine the correct field sizes, gather as many SysCodes as possible
  27. by monitoring system sites and examining their neighbor lists.
  28. Example:
  29. CSBK Bcast SysCode=10.1100.00010000 Neighbor SysCode=10.1100.00000000, CC=600
  30. CSBK Bcast SysCode=10.1100.00010000 Neighbor SysCode=10.1100.00001000, CC=622
  31. From this small sample we have these SysCodes:
  32. 10.1100.00000000
  33. 10.1100.00001000
  34. 10.1100.00010000
  35. 11.10.0000001010
  36. It becomes clear that the SysCodes should be decoded as:
  37. 10.1100.00000 000 Model=large NID=13 Area=1 Site=1
  38. 10.1100.00001 000 Model=large NID=13 Area=2 Site=1
  39. 10.1100.00010 000 Model=large NID=13 Area=3 Site=1
  40. So here, the area length is 5 and the site length is 3.
  41. In the DSDPlus.networks file, an area length value can be appended to TIII
  42. network records, so if the following line is added
  43. TIII, 13, "network name goes here", 5
  44. DSD+ will use the supplied area length value to properly decode this system's
  45. SysCode fields.
  46. These TIII sites can be added to the DSDPlus.sites file as:
  47. TIII, 13, 1.1, "site name goes here"
  48. TIII, 13, 2.1, "site name goes here"
  49. TIII, 13, 3.1, "site name goes here"
  50. The records in the DSDPlus.frequencies file also reference site numbers;
  51. for TIII sites, use the same area.site format:
  52. TIII, 13, 1.1, 600, 462.0, 0.0, 0
  53. TIII, 13, 2.1, 622, 462.3, 0.0, 0

So what i have to do for my case if code is: 11.10.0000001010 ?
Thanks
 
Status
Not open for further replies.
Top