This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

GPIO

can any one explain the difference between REGULAR PORT and FAST PORT in LPC2366.Thanks in advance.

Parents
  • The older method of accessing the ports are based on a lower-bandwidth communication channel between the ARM core and the I/O block. This means that it takes quite a number of clock cycles to get a write to the port register to actually result in a change of the port pins.

    You can not use both communication methods to access the ports, so you must specifically configure the processor to use the old or new communication method.

    Obviously, if you write new software, you should use the newer and faster interface. The original method is only left for compatibility with older-generation chips to allow easy porting of existing code.

    This is described quite well in chapter 10 of the user manual.

Reply
  • The older method of accessing the ports are based on a lower-bandwidth communication channel between the ARM core and the I/O block. This means that it takes quite a number of clock cycles to get a write to the port register to actually result in a change of the port pins.

    You can not use both communication methods to access the ports, so you must specifically configure the processor to use the old or new communication method.

    Obviously, if you write new software, you should use the newer and faster interface. The original method is only left for compatibility with older-generation chips to allow easy porting of existing code.

    This is described quite well in chapter 10 of the user manual.

Children