]> kolegite.com Git - vmks.git/commitdiff
Merge branch 'master' of https://gitlab.com/tues-embedded/vmks into HEAD
authorVladimir Garistov <vl.garistov@gmail.com>
Sun, 3 Apr 2022 00:43:55 +0000 (03:43 +0300)
committerVladimir Garistov <vl.garistov@gmail.com>
Sun, 3 Apr 2022 00:43:55 +0000 (03:43 +0300)
Oopsie, I forgot to commit last time I modified Big_LED_strip

1  2 
Examples/Big_LED_strip/Big_LED_strip.ino

index afe4bf6595046c2b262654d48b3ded969f4ab949,60ee8ca0462d138bff32ae05225d149d27b7f66a..0421bada468034f05d3e2a38221a74d4aa9e1ff7
        When loop() is called, the stack collides with the heap and overrides the library buffer.
        The resulting visual effect is interesting but in order to actually display the image
        we must do so directly without allocating a working buffer.
--      Uncomment this to indicate that display_rgb_direct() must be used.
++      ะชomment this to indicate that display_rgb_direct() must be used.
  */
  //#define NEOPIXEL_ATE_MY_RAM
+ //#define STM32
  
- //#ifdef NEOPIXEL_ATE_MY_RAM
+ #ifdef STM32
+ #define LED_PIN       PA2
+ #else
  #define LED_PIN       12
- //#else
- //#define LED_PIN     12
- //#endif
+ #endif
  
  int render_image(uint8_t buff[ROWS][COLS][3], const uint8_t image[]);
  int display_rgb(uint8_t buff[ROWS][COLS][3]);