fdm.bat 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. ECHO off
  2. SET ETH=2
  3. SET DIR=prescaler
  4. SET PIB=temp.pib
  5. SET DEV=local
  6. IF (%1)==() GOTO :NOOPT
  7. IF (%1)==(1) GOTO :ONE
  8. IF (%1)==(2) GOTO :TWO
  9. IF (%1)==(3) GOTO :THREE
  10. IF (%1)==(4) GOTO :FOUR
  11. IF (%1)==(5) GOTO :FIVE
  12. IF (%1)==(6a) GOTO :SIXA
  13. IF (%1)==(6b) GOTO :SIXB
  14. IF (%1)==(7a) GOTO :SEVENA
  15. IF (%1)==(7b) GOTO :SEVENB
  16. IF (%1)==(8a) GOTO :EIGHTA
  17. IF (%1)==(8b) GOTO :EIGHTB
  18. IF (%1)==(9a) GOTO :NINEA
  19. IF (%1)==(9b) GOTO :NINEB
  20. IF (%1)==(9c) GOTO :NINEC
  21. GOTO :INVAL
  22. :NOOPT
  23. echo Intellon fdm mode utility
  24. echo usage: fdm mode
  25. echo mode = "1" 2.01MHz to 27.90Mhz w/HAM bands notched
  26. echo mode = "2" 2.01Mhz to 7.08MHz w/no notches
  27. echo mode = "3" 2.01Mhz to 7.54MHz w/HAM and Aero notches
  28. echo mode = "4" 2.01Mhz to 11.91Mhz w/no notches
  29. echo mode = "5" 2.01MHz to 11.91MHz w/ HAM and Aero notches
  30. echo mode = "6a" 2.0Mhz to 13.0Mhz w/HAM bands notched
  31. echo mode = "6b" 17.0Mhz to 28.0Mhz w/HAM bands notched
  32. echo mode = "7a" 2.0MHz to 10.1MHz w/HAM bands notched
  33. echo mode = "7b" 14.3MHz to 28.0MHz w/HAM bands notched
  34. echo mode = "8a" 2.0MHz to 16.0MHz w/HAM bands notched
  35. echo mode = "8b" 21.0MHz to 28.0MHz w/HAM bands notched
  36. echo mode = "9a" 2.0MHz to 9.0MHz w/HAM bands notched
  37. echo mode = "9b" 11.0MHz to 17.0MHz w/HAM bands notched
  38. echo mode = "9c" 22.0MHz to 28.0MHz w/HAM bands notched
  39. GOTO :END
  40. :ONE
  41. echo Setting modem to 2.01 to 27.90Mhz w/Ham bands notched
  42. IF EXIST %PIB% del %PIB%
  43. int6k -i %ETH% -p %PIB% %DEV%
  44. psin %PIB% < %DIR%/INT6400-Wall-NA.txt
  45. setpib %PIB% a0c byte 0
  46. int6k -i %ETH% -P %PIB% %DEV%
  47. int6k -i %ETH% -C2 %DEV%
  48. del %PIB%
  49. GOTO :END
  50. :TWO
  51. echo Setting modem to 2.01Mhz to 7.08MHz w/no notches
  52. IF EXIST %PIB% del %PIB%
  53. int6k -i %ETH% -p %PIB% %DEV%
  54. psin %PIB% < %DIR%/2To7.txt
  55. setpib %PIB% a0c byte 13
  56. int6k -i %ETH% -P %PIB% %DEV%
  57. int6k -i %ETH% -C2 %DEV%
  58. del %PIB%
  59. GOTO :END
  60. :THREE
  61. echo Setting modem to 2.01Mhz to 7.54MHz w/HAM and Aero notches
  62. IF EXIST %PIB% del %PIB%
  63. int6k -i %ETH% -p %PIB% %DEV%
  64. psin %PIB% < %DIR%/2To75_notched.txt
  65. setpib %PIB% a0c byte 14
  66. int6k -i %ETH% -P %PIB% %DEV%
  67. int6k -i %ETH% -C2 %DEV%
  68. del %PIB%
  69. GOTO :END
  70. :FOUR
  71. echo Setting modem to 2.01Mhz to 11.91Mhz w/no notches
  72. IF EXIST %PIB% del %PIB%
  73. int6k -i %ETH% -p %PIB% %DEV%
  74. psin %PIB% < %DIR%/2To12.txt
  75. setpib %PIB% a0c byte 15
  76. int6k -i %ETH% -P %PIB% %DEV%
  77. int6k -i %ETH% -C2 %DEV%
  78. del %PIB%
  79. GOTO :END
  80. :FIVE
  81. echo Setting modem to 2.01MHz to 11.91MHz w/ HAM and Aero notches
  82. IF EXIST %PIB% del %PIB%
  83. int6k -i %ETH% -p %PIB% %DEV%
  84. psin %PIB% < %DIR%/2To12_notched.txt
  85. setpib %PIB% a0c byte 16
  86. int6k -i %ETH% -P %PIB% %DEV%
  87. int6k -i %ETH% -C2 %DEV%
  88. del %PIB%
  89. GOTO :END
  90. :SIXA
  91. echo Setting modem to 2.0Mhz to 13.0Mhz w/HAM bands notched
  92. IF EXIST %PIB% del %PIB%
  93. int6k -i %ETH% -p %PIB% %DEV%
  94. psin %PIB% < %DIR%/2To13_notched.txt
  95. setpib %PIB% a0c byte 5
  96. int6k -i %ETH% -P %PIB% %DEV%
  97. int6k -i %ETH% -C2 %DEV%
  98. del %PIB%
  99. GOTO :END
  100. :SIXB
  101. echo Setting modem to 17.0Mhz to 28.0Mhz w/HAM bands notched
  102. IF EXIST %PIB% del %PIB%
  103. int6k -i %ETH% -p %PIB% %DEV%
  104. psin %PIB% < %DIR%/17To28_notched.txt
  105. setpib %PIB% a0c byte 6
  106. int6k -i %ETH% -P %PIB% %DEV%
  107. int6k -i %ETH% -C2 %DEV%
  108. del %PIB%
  109. GOTO :END
  110. :SEVENA
  111. echo Setting modem to 2.0MHz to 10.1MHz w/HAM bands notched
  112. IF EXIST %PIB% del %PIB%
  113. int6k -i %ETH% -p %PIB% %DEV%
  114. psin %PIB% < %DIR%/2To101_notched.txt
  115. setpib %PIB% a0c byte 7
  116. int6k -i %ETH% -P %PIB% %DEV%
  117. int6k -i %ETH% -C2 %DEV%
  118. del %PIB%
  119. GOTO :END
  120. :SEVENB
  121. echo Setting modem to 14.3MHz to 28.0MHz w/HAM bands notched
  122. IF EXIST %PIB% del %PIB%
  123. int6k -i %ETH% -p %PIB% %DEV%
  124. psin %PIB% < %DIR%/143To28_notched.txt
  125. setpib %PIB% a0c byte 8
  126. int6k -i %ETH% -P %PIB% %DEV%
  127. int6k -i %ETH% -C2 %DEV%
  128. del %PIB%
  129. GOTO :END
  130. :EIGHTA
  131. echo Setting modem to 2.0MHz to 16.0MHz w/HAM bands notched
  132. IF EXIST %PIB% del %PIB%
  133. int6k -i %ETH% -p %PIB% %DEV%
  134. psin %PIB% < %DIR%/2To16_notched.txt
  135. setpib %PIB% a0c byte 9
  136. int6k -i %ETH% -P %PIB% %DEV%
  137. int6k -i %ETH% -C2 %DEV%
  138. del %PIB%
  139. GOTO :END
  140. :EIGHTB
  141. echo Setting modem to 21.0MHz to 28.0MHz w/HAM bands notched
  142. IF EXIST %PIB% del %PIB%
  143. int6k -i %ETH% -p %PIB% %DEV%
  144. psin %PIB% < %DIR%/21To28_notched.txt
  145. setpib %PIB% a0c byte 10
  146. int6k -i %ETH% -P %PIB% %DEV%
  147. int6k -i %ETH% -C2 %DEV%
  148. del %PIB%
  149. GOTO :END
  150. :NINEA
  151. echo Setting modem to 2.0MHz to 9.0MHz w/HAM bands notched
  152. IF EXIST %PIB% del %PIB%
  153. int6k -i %ETH% -p %PIB% %DEV%
  154. psin %PIB% < %DIR%/2To9_notched.txt
  155. setpib %PIB% a0c byte 2
  156. int6k -i %ETH% -P %PIB% %DEV%
  157. int6k -i %ETH% -C2 %DEV%
  158. del %PIB%
  159. GOTO :END
  160. :NINEB
  161. echo Setting modem to 11.0MHz to 17.0MHz w/HAM bands notched
  162. IF EXIST %PIB% del %PIB%
  163. int6k -i %ETH% -p %PIB% %DEV%
  164. psin %PIB% < %DIR%/11To17_notched.txt
  165. setpib %PIB% a0c byte 3
  166. int6k -i %ETH% -P %PIB% %DEV%
  167. int6k -i %ETH% -C2 %DEV%
  168. del %PIB%
  169. GOTO :END
  170. :NINEC
  171. echo Setting modem to 22.0MHz to 28.0MHz w/HAM bands notched
  172. IF EXIST %PIB% del %PIB%
  173. int6k -i %ETH% -p %PIB% %DEV%
  174. psin %PIB% < %DIR%/22To28_notched.txt
  175. setpib %PIB% a0c byte 4
  176. int6k -i %ETH% -P %PIB% %DEV%
  177. int6k -i %ETH% -C2 %DEV%
  178. del %PIB%
  179. GOTO :END
  180. :INVAL
  181. echo ERROR: not a valid mode number
  182. :END