mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
* 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:
parent
a59641a90d
commit
5a2def3a5e
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue