Input pull downs?
kenmac
Posts: 96
It's normal with PIC's etc to install pulldown resistors on input pins (switching +ve).
Does this practice also apply to the propeller inputs, or is it catered for internally?
kenmac
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Perth, Western Australia
Time Zone = GMT + 8
Does this practice also apply to the propeller inputs, or is it catered for internally?
kenmac
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Perth, Western Australia
Time Zone = GMT + 8
Comments
Some microprocessors have built-in pullup or pulldown resistors. Some have configurable pullup resistors (like the SX as found in the BS2px pin configuration statements).
The Propeller does not have built-in pullups. Like any microprocessor with input/output pins, the unused pins can be configured as outputs during program initialization so they would be "floating" for only a short period of time. The unchanging outputs, as long as they're unconnected, don't draw significant current.
You need to use external pull ups ( if switching -) or external Pull downs
if switching +··
Pulling up inputs is more common.
So it is not catered for internally on the Propeller
The SX chips also from Parallax have a PLP register that you can
set ( you can only pull up ) on these chips.When pins are set to input ...
Rgds
Ronald Nollet
=========================================================
It's normal with PIC's etc to install pulldown resistors on input pins (switching +ve).
Does this practice also apply to the propeller inputs, or is it catered for internally?
kenmac
===================
The Propeller does not have any internal pullups/pulldowns except on the RESn pin when BOEn is enabled. Most PICs have software configurable pullups usually on portB. I wouldn't rely on internal pullups anyways because they are usually weak.
Harrison
I'll continue to use them.
kenmac
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Perth, Western Australia
Time Zone = GMT + 8