~ruther/stm32h747i-disco-usb-image-viewer

ref: 9c2e500adbbb5a63f7db7cab78dcbdbd9567813d stm32h747i-disco-usb-image-viewer/firmware/include/generic.h -rw-r--r-- 310 bytes
9c2e500a — Rutherther docs: add missing docs 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef GENERIC_H
#define GENERIC_H

/**
 * @enum task_result_t
 * Result of a non-blocking task.
 */
typedef enum {
  RES_OK,         /**< The task succeeded */
  RES_ERROR,      /**< The task failed. */
  RES_WOULD_BLOCK /**< The task would block, so it was aborted. */
} task_result_t;

#endif // GENERIC_H
Do not follow this link