This is an automated email from the ASF dual-hosted git repository.
marko pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git.
from 330ade6 Merge pull request #1293 from
JuulLabs/bq27z561_init_check_updated
add 4e3d9dc Initial commit of TSL2591 driver w/sim stubs
add b0b6aee Added check for ARCH_sim
add 5134c4a Properly check for ARCH_sim
add 3294ee2 Changes to reflect recent merges
add ebb9011 Fixed spurious readings on gain/itime change
add 6d04ff6 Add lux to shell output
add 4dea463 Add optional float support for <1 lux
add 5f13bf8 Update for relative path changes
add c6a6674 Fixed pointer comparison warning with GCC 7
add 821fe86 Initial commit of TSL2591 driver w/sim stubs
add 414cccb Added check for ARCH_sim
add 107ce86 Properly check for ARCH_sim
add f1850e3 Initial commit of TSL2591 driver w/sim stubs
add 54df512 Added check for ARCH_sim
add 9bfcf6b Properly check for ARCH_sim
add 527a4db Update TSL2591 for recent mynewt-core changes
add 9f1e34d Update to reflect MODLOG and lock changes in mynewt-core
add f1943f4 Fixed spurious readings on gain/itime change
add 1c73dd0 Add lux to shell output
add 666a00b Add optional float support for <1 lux
add 578fda5 Update for relative path changes
add ace6a6e Fixed pointer comparison warning with GCC 7
add 73e8412 Merge branch 'tsl2591' of github.com:microbuilder/mynewt-core
into tsl2591
add 3b4963d Added support for auto gain adjustments
add ee8de1e Style guide cleanup
add 3ffc2f7 Updated license details
add bb7281d Avoid potential div by 0 in very low light
add de19069 Remove unused TSL2591_CONFIG flag
add 5503e5c Added comment on additional _f lux calc
add 34f903c Improved stats tracking
add 7214f63 Updated lux output to 3 decimal places
new 3ee80e1 Merge pull request #1259 from microbuilder/tsl2591
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../sensors/tsl2591/include/tsl2591/tsl2591.h | 224 +++++++
hw/drivers/sensors/{bno055 => tsl2591}/pkg.yml | 11 +-
hw/drivers/sensors/tsl2591/src/tsl2591.c | 706 +++++++++++++++++++++
hw/drivers/sensors/tsl2591/src/tsl2591_priv.h | 78 +++
hw/drivers/sensors/tsl2591/src/tsl2591_shell.c | 457 +++++++++++++
hw/drivers/sensors/tsl2591/src/tsl2591_sim.c | 122 ++++
.../sensors/tsl2591}/syscfg.yml | 50 +-
hw/sensor/creator/pkg.yml | 2 +
hw/sensor/creator/src/sensor_creator.c | 59 +-
hw/sensor/creator/syscfg.yml | 3 +
hw/sensor/pkg.yml | 3 +-
11 files changed, 1675 insertions(+), 40 deletions(-)
create mode 100644 hw/drivers/sensors/tsl2591/include/tsl2591/tsl2591.h
copy hw/drivers/sensors/{bno055 => tsl2591}/pkg.yml (82%)
create mode 100644 hw/drivers/sensors/tsl2591/src/tsl2591.c
create mode 100644 hw/drivers/sensors/tsl2591/src/tsl2591_priv.h
create mode 100644 hw/drivers/sensors/tsl2591/src/tsl2591_shell.c
create mode 100644 hw/drivers/sensors/tsl2591/src/tsl2591_sim.c
copy hw/{bsp/stm32f7discovery => drivers/sensors/tsl2591}/syscfg.yml (54%)