Skip to content

Commit e0bf49e

Browse files
authored
Merge pull request #3 from arduino/main
Merge upstream
2 parents ff95ff2 + dfcf97a commit e0bf49e

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

cores/arduino/cm_backtrace/fault_handler/gcc/cmb_fault.S

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
* Created on: 2016-12-16
2727
*/
2828

29+
#ifdef BACKTRACE_SUPPORT
30+
2931
.syntax unified
3032
.thumb
3133
.text
@@ -41,3 +43,5 @@ HardFault_Handler:
4143

4244
Fault_Loop:
4345
BL Fault_Loop /* while(1) */
46+
47+
#endif

libraries/Arduino_LED_Matrix/src/gallery.h

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,3 +572,26 @@ constexpr uint32_t LEDMATRIX_ANIMATION_WIFI_SEARCH[][4] = {
572572
{ 0x0, 0x1f02084, 0xe4110040, 500 },
573573
{ 0x3f840, 0x49f22084, 0xe4110040, 500 }
574574
};
575+
constexpr uint32_t LEDMATRIX_ANIMATION_HOURGLASS[][4] = {
576+
{ 0xe07f99fe, 0x1fc1fc1f, 0xe1f99e07, 50 },
577+
{ 0xe07f99fe, 0x1ff1fc1f, 0xe1f99e07, 50 },
578+
{ 0xe07f99fe, 0x1ffdfc1f, 0xe1f99e07, 50 },
579+
{ 0xe07f99fe, 0x1ffffc1f, 0xe1f99e07, 50 },
580+
{ 0xe07f99fe, 0x1ffffc3f, 0xe1f99e07, 50 },
581+
{ 0xe07f99fe, 0x1bfffc3f, 0xe1f99e07, 50 },
582+
{ 0xe07f99fe, 0x3bffbc3f, 0xe1f99e07, 50 },
583+
{ 0xe07f9bfe, 0x3bffbc3b, 0xe1f99e07, 50 },
584+
{ 0xe07f9bfe, 0x3bffbc3b, 0xe3f99e07, 50 },
585+
{ 0xe07f9bbe, 0x3bffbc3b, 0xe3f9be07, 50 },
586+
{ 0xe07b9bbe, 0x3bffbc7b, 0xe3f9be07, 50 },
587+
{ 0xe07b9bbe, 0x3bffbc7b, 0xe7b9be07, 50 },
588+
{ 0xe07b9bbe, 0x39ffbc7b, 0xe7b9be07, 50 },
589+
{ 0xe07b9bbe, 0x79ff9c7b, 0xe7b9be07, 50 },
590+
{ 0xe07b9bbe, 0x79ff9c79, 0xe7b9fe07, 50 },
591+
{ 0xe07b9f9e, 0x79ff9c79, 0xe7b9fe07, 50 },
592+
{ 0xe07b9f9e, 0x78ff9cf9, 0xe7b9fe07, 50 },
593+
{ 0xe0799f9e, 0xf8ff8cf9, 0xe799fe07, 50 },
594+
{ 0xe0799f8e, 0xf8ff8cf8, 0xef99fe07, 50 },
595+
{ 0xe0799f87, 0xf87f87f8, 0x7f99fe07, 50 },
596+
{ 0xe0799f87, 0xf83f83f8, 0x7f99fe07, 300 }
597+
};

0 commit comments

Comments
 (0)