Skip to content

Commit 679eee9

Browse files
committed
Added support for FLIR Lepton3.1R
1 parent 8d114cd commit 679eee9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

firmware/3.0/src/general/globalvariables.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
/*############################# PUBLIC VARIABLES ##############################*/
2727

2828
//Current firmware version
29-
char versionString[] = "Firmware 3.0.3 from 07.05.2023";
30-
uint16_t fwVersion = 303;
29+
char versionString[] = "Firmware 3.0.4 from 20.10.2023";
30+
uint16_t fwVersion = 304;
3131

3232
//320x240 buffer
3333
unsigned short* bigBuffer;

firmware/3.0/src/hardware/lepton.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,8 @@ bool lepton_version()
593593
leptonVersion = leptonVersion_2_5_shutter;
594594
}
595595

596-
//Detected Lepton3.5 Shuttered (Radiometric)
597-
else if (strstr(leptonhw, "05-070170") != NULL)
596+
//Detected Lepton3.1R or Lepton3.5 Shuttered (Radiometric)
597+
else if ((strstr(leptonhw, "05-070170") != NULL) || (strstr(leptonhw, "05-070850") != NULL))
598598
{
599599
leptonVersion = leptonVersion_3_5_shutter;
600600
}

firmware/README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In case you want to flash the newest version of the firmware to your device with
66

77
This guide should work on **all common operating systems** (**Windows, Linux & macOS**).
88

9-
You need to have [VS Code](https://code.visualstudio.com/) installed and download the zip archive of this repository. Then **unpack the 3.0 folder inside the firmware subfolder**, **start VS Code** and open this folder with **File -> Open Folder**.
9+
You need to have [VS Code](https://code.visualstudio.com/) with the [PlatformIO extension](https://platformio.org/install/ide?install=vscode) installed and download the zip archive of this repository. Then **unpack the 3.0 folder inside the firmware subfolder**, **start VS Code** and open this folder with **File -> Open Folder**.
1010

1111
**PlatformIO should initialize itself automatically** and you see the buttons to **Build, Upload and Clean** the project in the blue bar **at the bottom**. If this is not the case, **set it up manually using the instructions provided [here](https://platformio.org/install/ide?install=vscode)**.
1212

0 commit comments

Comments
 (0)