mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
d40ee50a8e
commit 2c7c3fc3985cc32866e8af496abea9971eaee90a Merge: 9179dae 41022c3 Author: philip <philip@gladstonefamily.net> Date: Sun Feb 28 14:47:47 2016 -0500 Merge remote-tracking branch 'upstream/dev' into rotary_2 commit 9179dae0824e6b35ad09e5113aacc26dc91692c0 Author: philip <philip@gladstonefamily.net> Date: Fri Feb 26 20:53:27 2016 -0500 Review comments commit 67741170e20ccb2b636e701f0664feff2aafbb4c Author: philip <philip@gladstonefamily.net> Date: Fri Feb 26 20:59:49 2016 -0500 Squashed commit of the following: commit 8c9a64731c4a8b9aedda18a399b433b173d2199f Merge: 085935f 19d3c1d Author: philip <philip@gladstonefamily.net> Date: Fri Feb 26 20:58:10 2016 -0500 Merge remote-tracking branch 'upstream/dev' into rotarymod Conflicts: app/platform/platform.c commit 085935fc56986d607ff5e05d1663970331959c34 Author: philip <philip@gladstonefamily.net> Date: Fri Feb 26 20:53:27 2016 -0500 Review comment commit 7732fd2d1044f28b8fcf5b0aa0f76d76fe80f449 Author: philip <philip@gladstonefamily.net> Date: Sat Feb 20 12:10:38 2016 -0500 Module to handle rotary decoders Eliminate ROTARY_DEBUG Remove unused file Eliminate a malloc call Cleaned up the register code. Now 0x114 bytes Fix bug with clearing bits in one case Fix the type in the #define name
27 lines
513 B
C
27 lines
513 B
C
/*
|
|
* Definitions to access the Rotary driver
|
|
*/
|
|
#ifndef __ROTARY_H__
|
|
#define __ROTARY_H__
|
|
|
|
#include "c_types.h"
|
|
|
|
#define ROTARY_CHANNEL_COUNT 3
|
|
|
|
typedef struct {
|
|
uint32_t pos;
|
|
uint32_t time_us;
|
|
} rotary_event_t;
|
|
|
|
int rotary_setup(uint32_t channel, int phaseA, int phaseB, int press, task_handle_t tasknumber);
|
|
|
|
bool rotary_getevent(uint32_t channel, rotary_event_t *result);
|
|
|
|
bool rotary_has_queued_event(uint32_t channel);
|
|
|
|
int rotary_getpos(uint32_t channel);
|
|
|
|
int rotary_close(uint32_t channel);
|
|
|
|
#endif
|