Content originally posted in LPCWare by embd02161991 on Tue Aug 27 09:42:10 MST 2013
Hi,
Brown out detection is used to detect if the supply voltage is above or below a certain threshold. When the supply voltage is below the threshold, none of the interrupts will be enabled. The polling function won't perform anything if the voltage is below the threshold. The interrupts and other functions will be properly functioning only after the voltage is above threshold. However, you could poll to detect if the supply voltage drops below the threshold and this can be used to perform a task at your will.
In short , polling cannot be used to detect if the supply voltage is above threshold because when the voltage is below threshold , the polling won't be functioning.
Thanks,
SK