nrf/modules/machine: Wake from deep sleep using "sense" Pin argument.

Pins are configured as wake sources for deep sleep using an additional
port-specific argument "sense" to the machine.Pin constructor.

Signed-off-by: Christian Walther <cwalther@gmx.ch>
pull/13367/head
Christian Walther 2024-01-05 22:16:38 +01:00
rodzic 4ba22b1b3b
commit 821da372d0
3 zmienionych plików z 38 dodań i 3 usunięć

Wyświetl plik

@ -42,7 +42,7 @@ Usage Model::
Constructors
------------
.. class:: Pin(id, mode=-1, pull=-1, *, value=None, drive=0, alt=-1)
.. class:: Pin(id, mode=-1, pull=-1, *, value=None, drive=0, alt=-1, sense=-1)
Access the pin peripheral (GPIO pin) associated with the given ``id``. If
additional arguments are given in the constructor then they are used to initialise
@ -97,6 +97,15 @@ Constructors
one pin alternate function is supported the this argument is not required. Not all
ports implement this argument.
- ``sense`` specifies whether and on what input value the pin contributes to the
*DETECT* signal, which wakes an nRF51/52 system from deep sleep. It can be one of:
- ``Pin.SENSE_DISABLED`` - Do not wake from this pin.
- ``Pin.SENSE_LOW`` - Wake when pin is low.
- ``Pin.SENSE_HIGH`` - Wake when pin is high.
Availability: nrf port.
As specified above, the Pin class allows to set an alternate function for a particular
pin, but it does not specify any further operations on such a pin. Pins configured in
alternate-function mode are usually not used as GPIO but are instead driven by other
@ -108,7 +117,7 @@ Constructors
Methods
-------
.. method:: Pin.init(mode=-1, pull=-1, *, value=None, drive=0, alt=-1)
.. method:: Pin.init(mode=-1, pull=-1, *, value=None, drive=0, alt=-1, sense=-1)
Re-initialise the pin using the given parameters. Only those arguments that
are specified will be set. The rest of the pin peripheral state will remain
@ -274,3 +283,13 @@ not all constants are available on all ports.
Pin.IRQ_HIGH_LEVEL
Selects the IRQ trigger type.
.. data:: Pin.SENSE_DISABLED
Pin.SENSE_LOW
Pin.SENSE_HIGH
Selects the *SENSE* configuration of the pin, which determines
whether and on what input value it contributes to the *DETECT*
signal, which wakes the system from deep sleep.
Availability: nrf port.

Wyświetl plik

@ -166,6 +166,9 @@ Power related functions
nRF microcontrollers are incapable of waking on a timer as all clocks are off in
the deep sleep state.
* Pins are configured as wake sources using the ``sense`` argument to the
`Pin` constructor.
.. function:: wake_reason()
Get the wake reason. See :ref:`constants <machine_constants>` for the possible return values.

Wyświetl plik

@ -349,6 +349,7 @@ static mp_obj_t pin_obj_init_helper(const pin_obj_t *self, mp_uint_t n_args, con
{ MP_QSTR_af, MP_ARG_INT, {.u_int = -1}}, // legacy
{ MP_QSTR_value, MP_ARG_KW_ONLY | MP_ARG_OBJ, {.u_obj = MP_OBJ_NULL}},
{ MP_QSTR_alt, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = -1}},
{ MP_QSTR_sense, MP_ARG_KW_ONLY | MP_ARG_INT, {.u_int = -1}},
};
// parse args
@ -374,13 +375,21 @@ static mp_obj_t pin_obj_init_helper(const pin_obj_t *self, mp_uint_t n_args, con
nrf_gpio_pin_input_t input = (mode == NRF_GPIO_PIN_DIR_INPUT) ? NRF_GPIO_PIN_INPUT_CONNECT
: NRF_GPIO_PIN_INPUT_DISCONNECT;
// sense mode (default unmodified)
nrf_gpio_pin_sense_t sense = (nrf_gpio_pin_sense_t)args[5].u_int;
if (sense == (nrf_gpio_pin_sense_t)-1) {
sense = nrf_gpio_pin_sense_get(self->pin);
} else if (sense != NRF_GPIO_PIN_NOSENSE && sense != NRF_GPIO_PIN_SENSE_LOW && sense != NRF_GPIO_PIN_SENSE_HIGH) {
mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("invalid pin sense: %d"), sense);
}
if (mode == NRF_GPIO_PIN_DIR_OUTPUT || mode == NRF_GPIO_PIN_DIR_INPUT) {
nrf_gpio_cfg(self->pin,
mode,
input,
pull,
NRF_GPIO_PIN_S0S1,
NRF_GPIO_PIN_NOSENSE);
sense);
} else {
mp_raise_msg_varg(&mp_type_ValueError, MP_ERROR_TEXT("invalid pin mode: %d"), mode);
}
@ -614,6 +623,10 @@ static const mp_rom_map_elem_t pin_locals_dict_table[] = {
{ MP_ROM_QSTR(MP_QSTR_AF_OD), MP_ROM_INT(GPIO_MODE_AF_OD) },
{ MP_ROM_QSTR(MP_QSTR_PULL_NONE), MP_ROM_INT(GPIO_NOPULL) },
*/
{ MP_ROM_QSTR(MP_QSTR_SENSE_DISABLED), MP_ROM_INT(NRF_GPIO_PIN_NOSENSE) },
{ MP_ROM_QSTR(MP_QSTR_SENSE_LOW), MP_ROM_INT(NRF_GPIO_PIN_SENSE_LOW) },
{ MP_ROM_QSTR(MP_QSTR_SENSE_HIGH), MP_ROM_INT(NRF_GPIO_PIN_SENSE_HIGH) },
#include "genhdr/pins_af_const.h"
};