Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to master #311

Closed
wants to merge 140 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
140 commits
Select commit Hold shift + click to select a range
fe5f762
add Sleep class
jp112sdl Mar 4, 2022
d0968e4
remove dependency from external lib
jp112sdl Mar 4, 2022
68e292b
add RTC support
jp112sdl Mar 4, 2022
93d8e67
add rp2040 as supported model
jp112sdl Mar 5, 2022
2dcfa15
add simple sleep() method
jp112sdl Mar 5, 2022
5f83f7f
only add a timer is there is not already one added
jp112sdl Mar 5, 2022
3d0b110
timer does not have to be disabled while sleep
jp112sdl Mar 5, 2022
67e6b0e
hint for RPI_PICO_TimerInterrupt Lib removed
jp112sdl Mar 6, 2022
6ee7999
revert changes
jp112sdl Mar 17, 2022
7b402ba
set SPI_MODE0 only if SPI.h is included (in sketch)
jp112sdl Mar 17, 2022
6a1c2b5
Merge pull request #296 from jp112sdl/dev_rp2040
pa-pa May 2, 2022
4efdf89
use SoftSPI
jp112sdl May 28, 2022
d05be4e
add support for USE_HW_SERIAL
jp112sdl May 28, 2022
c3297da
add soft reset method
jp112sdl May 28, 2022
7e57a89
ad RTCTimer for SysClock and RTCClock
jp112sdl May 28, 2022
93fcf37
wip
jp112sdl May 28, 2022
f593f96
add internal and external battery measurement
jp112sdl May 28, 2022
b00a090
use separate interrupt handling for efm32
jp112sdl May 28, 2022
276598c
add internal eeprom emulation
jp112sdl May 28, 2022
d40c9da
fix compiler warnings
jp112sdl May 28, 2022
9e8586e
add M24M01 i2c eeprom support
jp112sdl May 28, 2022
742510c
fix chip id array order
jp112sdl Jun 1, 2022
1f5c9fb
allocate 3 pages for eeprom
jp112sdl Jun 1, 2022
e3f415b
fix for missing SPI_BITORDER_MSBFIRST
jp112sdl Jun 8, 2022
e5638bf
revoke fix
jp112sdl Jun 8, 2022
00abc51
fix for changes in Adafruit_GFX.h ad4b6b4
jp112sdl Jun 8, 2022
d977b83
add a little delay before reset to make sure all 'flash eeprom' work …
jp112sdl Jun 15, 2022
ee4f547
reworked AlarmClock
jp112sdl Jun 15, 2022
6e04a90
reworked power save
jp112sdl Jun 15, 2022
e2a7436
reworked eeprom emulation
jp112sdl Jun 15, 2022
2851c81
fix EFM32 specific routines
jp112sdl Jun 15, 2022
ba5ded9
m24mXX methods are only for EFM32
jp112sdl Jun 15, 2022
fbcbe4c
fix compiler errors with new Adafruit libs
jp112sdl Jun 15, 2022
562fa78
add EFM32 support in library information
jp112sdl Jun 28, 2022
692fab6
usw HW SPI
jp112sdl Jun 28, 2022
d9913cb
separate radio module classes for CC1101 and Si4431
jp112sdl Jul 6, 2022
effecca
fix pin
jp112sdl Jul 6, 2022
db56c32
writeReg wrapper
jp112sdl Jul 6, 2022
9b28248
make writeReg inline
jp112sdl Jul 6, 2022
be9c55c
remove compiler warnings
jp112sdl Jul 6, 2022
34376f2
add separate radio classes
jp112sdl Jul 6, 2022
7884666
update TODO, renamed GDO0 to IRQ, renamed debug messages
jp112sdl Jul 6, 2022
b4bd483
show compiler error, WOR not implemented
jp112sdl Jul 6, 2022
1da00ac
clear IRQ register before sleep
jp112sdl Jul 6, 2022
849ac86
disable some debug messages
jp112sdl Jul 6, 2022
36ae268
no compiler error on WOR
jp112sdl Jul 6, 2022
0875c95
avoid immediate EM4 to
jp112sdl Jul 8, 2022
1d8c286
add SPI_MULTIBYTE_TRANSFER
jp112sdl Jul 8, 2022
a5faa21
ensure waiting at least 100µs
jp112sdl Jul 8, 2022
22c6e2b
add writeBurst wrapper method
jp112sdl Jul 8, 2022
0eb1572
remove rev.eng. debugging stuff
jp112sdl Jul 8, 2022
26f79b7
force MISO pin to INPUT when idle
jp112sdl Jul 8, 2022
06869b4
revert to old delay values
jp112sdl Jul 8, 2022
2868124
Merge pull request #300 from jp112sdl/master
pa-pa Jul 11, 2022
115b174
entering EM4 makes trouble ^^
jp112sdl Jul 11, 2022
b7c950b
wait for SI4431_IRQ2_CHIP_READY in reset() method
jp112sdl Jul 11, 2022
f503aeb
remove sabotage flag when sabotage messages are disabled and send inf…
jp112sdl Jul 12, 2022
4945868
add an enable() method to completely dis-/enable the (Dual)StatusLed
jp112sdl Jul 12, 2022
e359505
fix compiler error
jp112sdl Jul 12, 2022
6d3935e
disable led when an info message is sent
jp112sdl Jul 13, 2022
921534b
add return
jp112sdl Jul 13, 2022
9617e32
fix wrong hal call
jp112sdl Jul 13, 2022
3848db3
moved unsetIdle
jp112sdl Jul 13, 2022
c3e297d
fix sleep
jp112sdl Jul 13, 2022
bfcb5bd
clear pending and disable SysTickIRQn before entering EM2
jp112sdl Jul 15, 2022
378eb3b
re-add accidently moved cyclic info message
jp112sdl Jul 15, 2022
5d96010
do not re-declare STRINGIZE if already defined
jp112sdl Jul 15, 2022
4d24bac
moved from RTCDRV to sl_sleeptimer due to deprecated warning
jp112sdl Jul 15, 2022
841ce69
some flitz workaround from stan23
jp112sdl Jul 16, 2022
2afe8d8
set correct flitz fix
jp112sdl Jul 16, 2022
faa324c
RFM69 implementation
Nico9n Jul 17, 2022
7caa24a
stay in EM2 when battery is critical
jp112sdl Jul 23, 2022
bce4df9
let the device check, if the eventsender sent a message. to restart c…
jp112sdl Jul 23, 2022
ea0a5e6
make buffer const
jp112sdl Aug 3, 2022
1042197
disable GDO0/nIRQ interrupt when sending
jp112sdl Aug 3, 2022
5fd308c
initialize registers for SI4431 Rev V2 (see AN415)
jp112sdl Aug 3, 2022
cd78819
use additional local wrapper for spi functions
jp112sdl Aug 3, 2022
48c25f9
add burst
jp112sdl Aug 3, 2022
973cb7d
fix spi init call
jp112sdl Aug 5, 2022
97a5129
fix typo
jp112sdl Aug 5, 2022
29dbdde
add parameter to force sending an additional message to master
jp112sdl Aug 5, 2022
91d6064
fix TwoStateChannel init order
jp112sdl Aug 5, 2022
15db889
force sending message to master
jp112sdl Aug 5, 2022
3c18c23
send on first run, too
jp112sdl Aug 5, 2022
9180b43
robust sleep/wakeup handling
stan23 Aug 8, 2022
33526e6
no magic numbers
stan23 Aug 8, 2022
d383073
cleanup
stan23 Aug 8, 2022
a52df28
Merge branch 'pa-pa:master' into dev_efm32
jp112sdl Aug 9, 2022
943851a
configFreq cleanup
stan23 Aug 11, 2022
b27b839
compile efm32
jp112sdl Aug 11, 2022
9e21693
...
jp112sdl Aug 11, 2022
38fe879
...
jp112sdl Aug 11, 2022
28fbaf4
...
jp112sdl Aug 11, 2022
51b2d45
...
jp112sdl Aug 11, 2022
2a1b9c7
...
jp112sdl Aug 11, 2022
88fba19
...
jp112sdl Aug 11, 2022
fae6cd7
...
jp112sdl Aug 11, 2022
2fa2c4e
Merge pull request #1 from jp112sdl/dev_efm32_ghaction
jp112sdl Aug 11, 2022
83f55fd
Update library.properties
pa-pa Sep 15, 2022
e316b33
add pseudo methods
jp112sdl Sep 21, 2022
419035d
remove separate efm32 section
jp112sdl Sep 21, 2022
1953edf
moved WiringPinMode for EFM32
jp112sdl Sep 21, 2022
8ab5ede
Update AskSinPP.h
pa-pa Sep 21, 2022
d935679
Update library.properties
pa-pa Sep 21, 2022
9416e99
Merge branch 'master' of https://github.com/pa-pa/AskSinPP into dev_e…
jp112sdl Sep 21, 2022
841e62b
Merge pull request #302 from jp112sdl/dev_efm32
jp112sdl Sep 21, 2022
8a0ae84
RHS_x4 added
Sep 22, 2022
ca7927b
save some bytes
Sep 22, 2022
c92629a
cmd with burn-out detection
Sep 22, 2022
f764f7c
switch to sht21
Sep 22, 2022
a1d9aa0
Update AskSinPP.h
jp112sdl Oct 11, 2022
b20601f
Consolidated AES functions into one file
trilu2000 Oct 19, 2022
4820108
Fix typo in README
henrywiechert Nov 4, 2022
8a1f3a2
Merge pull request #303 from henrywiechert/patch-1
jp112sdl Nov 6, 2022
0b0962e
das war irgendwie abhanden gekommen
jp112sdl Nov 23, 2022
e9b00c7
add waitSerial to EFM32
jp112sdl Nov 24, 2022
ed10bb1
Merge pull request #304 from jp112sdl/master
jp112sdl Nov 24, 2022
101903d
fix perl error
Dec 14, 2022
5bc817e
fix perl error
Dec 14, 2022
a34cf8d
Aufteilung der Radioklasse aus asksinpp übernommen
Nico9n Dec 25, 2022
38ff05e
Merge branch 'master' into RFM69
Nico9n Dec 25, 2022
36b2cf0
Alte Datei entfernt.
Nico9n Dec 25, 2022
d83730b
Kommentar angepasst.
Nico9n Dec 25, 2022
e0dd2cb
Debugausgaben auskommentiert.
Nico9n Dec 25, 2022
1a77671
Interrupt Fix STM32
Nico9n Dec 27, 2022
4c4b8d2
Merge pull request #305 from Nico9n/master
pa-pa Dec 28, 2022
86a7ef7
formating
Dec 28, 2022
1ecbccb
fix for undefined constants
jp112sdl Jan 3, 2023
565792f
use crc for address/serial calculation on an EFM32
jp112sdl Jan 3, 2023
bef0f31
size of EFM32 Unique ID is 64bit (8 Byte)
jp112sdl Jan 3, 2023
0a5403a
update id calculation for esp32 and rp2040
jp112sdl Jan 8, 2023
67ad7bc
Merge pull request #306 from jp112sdl/master
pa-pa Jan 9, 2023
ab4be53
fix board
jp112sdl Jan 18, 2023
a33d482
test
jp112sdl Jan 18, 2023
f496caa
Merge pull request #308 from jp112sdl/master
jp112sdl Jan 18, 2023
751715a
add ci test for asksinsniffer
jp112sdl Feb 12, 2023
4ec1cb9
Merge pull request #309 from jp112sdl/master
jp112sdl Feb 12, 2023
264d6a2
fix of delay blink function
trilu2000 Mar 4, 2023
1678573
Merge branch 'master' of https://github.com/pa-pa/AskSinPP
trilu2000 Mar 4, 2023
e45d744
Update Radio.h
trilu2000 Mar 4, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add simple sleep() method
  • Loading branch information
jp112sdl committed Mar 5, 2022
commit 2dcfa15d67f3d8cec92698e793bb4200e753e0d2
3 changes: 3 additions & 0 deletions AskSinPP.h
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,9 @@ class AskSin : public AskSinBase {

void sleepForever () { activity.sleepForever(*this); }
#endif
#if defined(ARDUINO_ARCH_RP2040)
void sleep () { activity.savePower<Sleep>(*this); }
#endif
};

#ifndef NORTC
Expand Down