Add header for module eveL explaining what it is.

Exclude modeveL-gen.h from Sphinx build
This commit is contained in:
James Bowman 2020-02-03 18:41:32 -08:00
parent 7fd30e7d20
commit 0bcfabbc87
2 changed files with 13 additions and 0 deletions

View File

@ -156,6 +156,7 @@ exclude_patterns = ["**/build*",
"ports/zephyr",
"py",
"shared-bindings/util.*",
"shared-bindings/eveL/modeveL-gen.h",
"shared-module",
"supervisor",
"tests",

View File

@ -33,6 +33,18 @@
// #if MICROPY_PY_BUILTINS_EVEL
//| :mod:`eveL` --- low-level BridgeTek EVE bindings
//| ================================================
//|
//| .. module:: eveL
//| :synopsis: low-level BridgeTek EVE bindings
//| :platform: SAMD21/SAMD51
//|
//| The `eveL` module provides a class EVEL which
//| contains methods for constructing EVE command
//| buffers and appending basic graphics commands.
//|
typedef struct _mp_obj_EVEL_t {
mp_obj_base_t base;
mp_obj_t writer;