home *** CD-ROM | disk | FTP | other *** search
/ The Technocratic Times 2 / technocratic-times-2.adf / page11 < prev    next >
Text File  |  1988-12-31  |  2KB  |  63 lines

  1.             PARALLELL I/O
  2.  
  3. Why be so addicted to the software? The
  4. Amiga  has  a  lot of possibilities for
  5. external devices,  but many people have
  6. not imagined how easy  it is  to  use a
  7. computer to controlling and  measuring.
  8. The needed intergrated circuits is both
  9. cheap and easy to use.  The easiest way
  10. is to use the parallellconnector, which
  11. can be expanded  to  max.  56 I/O-lines
  12. (7*8). The circuit  in this article can
  13. adress 24 I/O-lines  (3*8),  but can be
  14. modified  for more lines.  You can find
  15. the  pinconfiguration of the parallell-
  16. connector in the manual  you  got  when
  17. you  bought  your Amiga, in the chapter
  18. "Technical Reference".On the parallell-
  19. port can you find 25 pins,  the pins of
  20. interest for this project is: The data-
  21. bits, D0 to D7,which contains the data-
  22. bits that is written on the  parallell-
  23. port. The BUSY, POUT and SEL, which can
  24. be  programmed to  leave  a  three  bit
  25. adresscode. +5V PULLUP,  to  supply the
  26. circuit with power, but be careful,  if
  27. you takes to much current will the fuse
  28. in  your  transformer burn.  You should
  29. also be sure that a signal or pullup is
  30. not  connected  to  ground,  which will
  31. result  in a blowed  fuse or in serious
  32.  
  33.  
  34. cases, a damaged  computer.  The SIGNAL
  35. GROUND  pins can you use to ground your
  36. circuit,  but   DO  NOT  connect  these
  37. signals  to  the  shieldground, that is
  38. availiable on the chassi of your Amiga,
  39. it will hurt your dear Amiga badly.Lets
  40. go on with descibe the function of this
  41. circuit. The output lines BUSY, SEL and
  42. POUT  is  used  to  leave  a  three bit
  43. address-selectioncode  to  the   binary
  44. decoder IC1. The octal busbuffer IC2 is
  45. the inputport at  address $2. The latch
  46. IC4, is the outputport at adress $3.The
  47. transciever  IC3  is a two-way directed
  48. port at the addresses $0 (write) and $1
  49. (read).The three left addresslines (E4,
  50. E5 & E6) can be used to get 24 (3*8=24)
  51. more I/O-lines. Line  7  on  IC1 is not
  52. used  to select  an address, but to lit
  53. the LED D1, READY, when  none of of the
  54. addresses  on  the  I/O-expansion  have
  55. selected.  Notice  that  the  IC3 is no
  56. latch,  which  means that it only sends
  57. data as long as it to from the computer
  58. The Outputport IC4 has a latch and will
  59. therefor  keep  the databyte stabile on
  60. the  outputline until it is overwritten
  61. by the processor.I will now explain how
  62. to  make  the software to this project.
  63.