Notifier

class wpilib.Notifier(handler: Callable[[], None])

Bases: pybind11_object

Create a Notifier for timer event notification.

Parameters:

handler – The handler is called at the notification time which is set using StartSingle or StartPeriodic.

static setHALThreadPriority(realTime: bool, priority: int) bool

Sets the HAL notifier thread priority.

The HAL notifier thread is responsible for managing the FPGA’s notifier interrupt and waking up user’s Notifiers when it’s their time to run. Giving the HAL notifier thread real-time priority helps ensure the user’s real-time Notifiers, if any, are notified to run in a timely manner.

Parameters:
  • realTime – Set to true to set a real-time priority, false for standard priority.

  • priority – Priority to set the thread to. For real-time, this is 1-99 with 99 being highest. For non-real-time, this is forced to 0. See “man 7 sched” for more details.

Returns:

True on success.

setHandler(handler: Callable[[], None]) None

Change the handler function.

Parameters:

handler – Handler

setName(name: str) None

Sets the name of the notifier. Used for debugging purposes only.

Parameters:

name – Name

startPeriodic(period: seconds) None

Register for periodic event notification.

A timer event is queued for periodic event notification. Each time the interrupt occurs, the event will be immediately requeued for the same time interval.

Parameters:

period – Period to call the handler starting one period after the call to this method.

startSingle(delay: seconds) None

Register for single event notification.

A timer event is queued for a single event after the specified delay.

Parameters:

delay – Amount of time to wait before the handler is called.

stop() None

Stop timer events from occurring.

Stop any repeating timer events from occurring. This will also remove any single notification events from the queue.

If a timer-based call to the registered handler is in progress, this function will block until the handler call is complete.