-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/nand_flash_linux_support
- Loading branch information
Showing
10 changed files
with
19,289 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
// JPEG encoded image 46x46, 7561 bytes | ||
extern const unsigned char logo_jpg[] asm("_binary_logo_jpg_start"); | ||
const unsigned int logo_jpg_len = 7561; | ||
|
||
extern char _binary_logo_jpg_start; | ||
extern char _binary_logo_jpg_end; | ||
// Must be defined as macro because extern variables are not known at compile time (but at link time) | ||
#define logo_jpg_len (&_binary_logo_jpg_end - &_binary_logo_jpg_start) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* | ||
Raw data from Logitech C170 USB camera was reconstructed to usb_camera_2.jpg | ||
It was converted to RGB888 array with jpg_to_rgb888_hex.py | ||
*/ | ||
|
||
// JPEG encoded frame 160x120, 1384 bytes, has broken 0xFFFF marker | ||
extern const unsigned char camera_2_jpg[] asm("_binary_usb_camera_2_jpg_start"); | ||
|
||
extern char _binary_usb_camera_2_jpg_start; | ||
extern char _binary_usb_camera_2_jpg_end; | ||
// Must be defined as macro because extern variables are not known at compile time (but at link time) | ||
#define camera_2_jpg_len (&_binary_usb_camera_2_jpg_end - &_binary_usb_camera_2_jpg_start) |
Oops, something went wrong.