Skip to content

Commit

Permalink
SDK release v1.49.14
Browse files Browse the repository at this point in the history
  • Loading branch information
francovaro committed Apr 25, 2024
1 parent 9c5e948 commit ab76f05
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
9 changes: 6 additions & 3 deletions EdgeImpulse.EI-SDK.pdsc
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
<name>EI-SDK</name>
<license>LICENSE-apache-2.0.txt</license>
<description>Edge Impulse SDK</description>
<url>https://github.com/edgeimpulse/edge-impulse-sdk-pack/releases/download/v1.49.11/</url>
<url>https://github.com/edgeimpulse/edge-impulse-sdk-pack/releases/download/v1.49.14/</url>
<supportContact>[email protected]</supportContact>
<repository type="git">https://github.com/edgeimpulse/edge-impulse-sdk-pack.git</repository>
<releases>
<release version="1.49.11" tag="v1.49.11" date="2024-04-22" url="https://github.com/edgeimpulse/edge-impulse-sdk-pack/releases/download/v1.49.11/EdgeImpulse.EI-SDK.1.49.11.pack">
<release version="1.49.14" tag="v1.49.14" date="2024-04-25" url="https://github.com/edgeimpulse/edge-impulse-sdk-pack/releases/download/v1.49.14/EdgeImpulse.EI-SDK.1.49.14.pack">
EI-SDK
</release>
<release version="1.49.11" tag="v1.49.11" date="2024-04-22" url="https://github.com/edgeimpulse/edge-impulse-sdk-pack/releases/download/v1.49.11/EdgeImpulse.EI-SDK.1.49.11.pack">
EI-SDK
</release>
<release version="1.49.9" tag="v1.49.9" date="2024-04-17" url="https://github.com/edgeimpulse/edge-impulse-sdk-pack/releases/download/v1.49.9/EdgeImpulse.EI-SDK.1.49.9.pack">
EI-SDK
</release>
Expand Down Expand Up @@ -116,7 +119,7 @@
</packages>
</requirements>
<components>
<component Cclass="EdgeImpulse" Cgroup="SDK" Cversion="1.49.11">
<component Cclass="EdgeImpulse" Cgroup="SDK" Cversion="1.49.14">
<description>Edge Impulse SDK</description>
<!-- short component description -->
<files>
Expand Down
4 changes: 2 additions & 2 deletions EdgeImpulse.pidx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<index schemaVersion="1.0.0" xs:noNamespaceSchemaLocation="PackIndex.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance">
<vendor>EdgeImpulse</vendor>
<url>https://raw.githubusercontent.com/edgeimpulse/edge-impulse-sdk-pack/main/</url>
<timestamp>2024-04-22 10:08:36</timestamp>
<timestamp>2024-04-25 08:59:38</timestamp>
<pindex>
<pdsc url="https://github.com/edgeimpulse/edge-impulse-sdk-pack/releases/download/v1.49.11/" vendor="EdgeImpulse" name="EI-SDK" version="1.49.11"/>
<pdsc url="https://github.com/edgeimpulse/edge-impulse-sdk-pack/releases/download/v1.49.14/" vendor="EdgeImpulse" name="EI-SDK" version="1.49.14"/>
</pindex>
</index>
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,16 @@ __attribute__((weak)) void ei_printf_float(float f) {
ei_printf("%f", f);
}

__attribute__((weak)) void ei_putchar(char data)
{
putchar(data);
}

__attribute__((weak)) char ei_getchar(void)
{
return getchar();
}

__attribute__((weak)) void *ei_malloc(size_t size) {
return malloc(size);
}
Expand Down

0 comments on commit ab76f05

Please sign in to comment.