* fix HAL_DEBUG_INTERRUPT to be a separate bit, it was overlapping with

something else
* add HAL_DEBUG_GPIO, for some GPIO related debugging I'm tinkering with
  at the moment.
This commit is contained in:
Adrian Chadd 2011-01-26 09:37:43 +00:00
parent a59641a90d
commit 5a2def3a5e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=217878

View File

@ -42,7 +42,8 @@ enum {
HAL_DEBUG_EEPROM = 0x00008000,
HAL_DEBUG_BEACON = 0x00010000, /* beacon setup work */
HAL_DEBUG_POWER = 0x00020000, /* power management */
HAL_DEBUG_INTERRUPT = 0x00000080, /* interrupt handling */
HAL_DEBUG_GPIO = 0x00040000, /* GPIO debugging */
HAL_DEBUG_INTERRUPT = 0x00080000, /* interrupt handling */
HAL_DEBUG_ANY = 0xffffffff
};