cambios 01-12-25
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
|
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
|
||||||
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
|
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
|
||||||
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
|
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
|
||||||
<provider class="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" console="false" env-hash="-696352624643696132" id="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="MCU ARM GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD "${INPUTS}"" prefer-non-shared="true">
|
<provider class="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" console="false" env-hash="647843719379509656" id="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="MCU ARM GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD "${INPUTS}"" prefer-non-shared="true">
|
||||||
<language-scope id="org.eclipse.cdt.core.gcc"/>
|
<language-scope id="org.eclipse.cdt.core.gcc"/>
|
||||||
<language-scope id="org.eclipse.cdt.core.g++"/>
|
<language-scope id="org.eclipse.cdt.core.g++"/>
|
||||||
</provider>
|
</provider>
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
|
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
|
||||||
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
|
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
|
||||||
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
|
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
|
||||||
<provider class="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" console="false" env-hash="-696352624643696132" id="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="MCU ARM GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD "${INPUTS}"" prefer-non-shared="true">
|
<provider class="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" console="false" env-hash="647843719379509656" id="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="MCU ARM GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD "${INPUTS}"" prefer-non-shared="true">
|
||||||
<language-scope id="org.eclipse.cdt.core.gcc"/>
|
<language-scope id="org.eclipse.cdt.core.gcc"/>
|
||||||
<language-scope id="org.eclipse.cdt.core.g++"/>
|
<language-scope id="org.eclipse.cdt.core.g++"/>
|
||||||
</provider>
|
</provider>
|
||||||
|
|||||||
@@ -215,4 +215,5 @@
|
|||||||
<resource resourceType="PROJECT" workspacePath="/P5_SETR2"/>
|
<resource resourceType="PROJECT" workspacePath="/P5_SETR2"/>
|
||||||
</configuration>
|
</configuration>
|
||||||
</storageModule>
|
</storageModule>
|
||||||
|
<storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/>
|
||||||
</cproject>
|
</cproject>
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
#include "Tasks.h"
|
#include "Tasks.h"
|
||||||
|
|
||||||
int WifiServer(void);
|
int WifiServer(void);
|
||||||
static WIFI_Status_t SendWebPage(uint8_t ledIsOn, SensorData_t payload);
|
static WIFI_Status_t SendJsonResponse(SensorData_t* payload);
|
||||||
static int WifiStart(void);
|
static int WifiStart(void);
|
||||||
static int WifiConnect(void);
|
static int WifiConnect(void);
|
||||||
static bool WebServerProcess(void);
|
static bool WebServerProcess(void);
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
#include "Sensors.h"
|
#include "Sensors.h"
|
||||||
|
|
||||||
TickType_t sensor_period = 100;
|
TickType_t sensor_period = 100;
|
||||||
SensorData_t sensor_data;
|
|
||||||
extern QueueHandle_t xQueueSensors;
|
extern QueueHandle_t xQueueSensors;
|
||||||
|
|
||||||
void InitSensors()
|
void InitSensors()
|
||||||
@@ -21,13 +20,13 @@ void InitSensors()
|
|||||||
BSP_MAGNETO_Init();
|
BSP_MAGNETO_Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ReadSensors()
|
void ReadSensors(SensorData_t* sensor_data)
|
||||||
{
|
{
|
||||||
sensor_data.humidity = BSP_HSENSOR_ReadHumidity();
|
sensor_data->humidity = BSP_HSENSOR_ReadHumidity();
|
||||||
sensor_data.pressure = BSP_PSENSOR_ReadPressure();
|
sensor_data->pressure = BSP_PSENSOR_ReadPressure();
|
||||||
sensor_data.temperature = BSP_TSENSOR_ReadTemp();
|
sensor_data->temperature = BSP_TSENSOR_ReadTemp();
|
||||||
|
|
||||||
BSP_ACCELERO_AccGetXYZ(sensor_data.accelerometer);
|
BSP_ACCELERO_AccGetXYZ(sensor_data->accelerometer);
|
||||||
BSP_GYRO_GetXYZ(sensor_data.gyroscope);
|
BSP_GYRO_GetXYZ(sensor_data->gyroscope);
|
||||||
BSP_MAGNETO_GetXYZ(sensor_data.magnetometer);
|
BSP_MAGNETO_GetXYZ(sensor_data->magnetometer);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ void CreateTasks()
|
|||||||
xTaskCreate(
|
xTaskCreate(
|
||||||
TaskSensors,
|
TaskSensors,
|
||||||
"TaskSensors",
|
"TaskSensors",
|
||||||
128,
|
256,
|
||||||
NULL,
|
NULL,
|
||||||
1,
|
1,
|
||||||
&sensorTaskHandle
|
&sensorTaskHandle
|
||||||
@@ -52,7 +52,7 @@ void CreateTasks()
|
|||||||
xTaskCreate(
|
xTaskCreate(
|
||||||
TaskWebServer,
|
TaskWebServer,
|
||||||
"TaskWebServer",
|
"TaskWebServer",
|
||||||
256,
|
512,
|
||||||
NULL,
|
NULL,
|
||||||
1,
|
1,
|
||||||
NULL
|
NULL
|
||||||
@@ -70,12 +70,14 @@ void CreateTasks()
|
|||||||
|
|
||||||
void TaskSensors(void* pArg)
|
void TaskSensors(void* pArg)
|
||||||
{
|
{
|
||||||
|
SensorData_t data;
|
||||||
InitSensors();
|
InitSensors();
|
||||||
|
|
||||||
while(1)
|
while(1)
|
||||||
{
|
{
|
||||||
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
|
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
|
||||||
ReadSensors();
|
ReadSensors(&data);
|
||||||
xQueueSend(xQueueSensors, (SensorData_t*) pArg, portMAX_DELAY);
|
xQueueSend(xQueueSensors, &data, portMAX_DELAY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ int WifiConnect(void) {
|
|||||||
if (WIFI_Connect(SSID, PASSWORD, WIFI_ECN_WPA2_PSK) == WIFI_STATUS_OK) {
|
if (WIFI_Connect(SSID, PASSWORD, WIFI_ECN_WPA2_PSK) == WIFI_STATUS_OK) {
|
||||||
if (WIFI_GetIP_Address(IP_Addr) == WIFI_STATUS_OK) {
|
if (WIFI_GetIP_Address(IP_Addr) == WIFI_STATUS_OK) {
|
||||||
LOG(
|
LOG(
|
||||||
("> es-wifi module connected: got IP Address : %d.%d.%d.%d\n", IP_Addr[0], IP_Addr[1], IP_Addr[2], IP_Addr[3]));
|
("> es-wifi module connected: got IP Address : %d.%d.%d.%d\n", IP_Addr[0], IP_Addr[1], IP_Addr[2], IP_Addr[3]));
|
||||||
} else {
|
} else {
|
||||||
LOG((" ERROR : es-wifi module CANNOT get IP address\n"));
|
LOG((" ERROR : es-wifi module CANNOT get IP address\n"));
|
||||||
return -1;
|
return -1;
|
||||||
@@ -69,9 +69,9 @@ int WifiConnect(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int WifiServer(void) {
|
int WifiServer(void) {
|
||||||
bool StopServer = false;
|
bool stop_server = false;
|
||||||
|
|
||||||
LOG(("\nRunning HTML Server test\n"));
|
LOG(("\nRunning HTTP Server test\n"));
|
||||||
if (WifiConnect() != 0)
|
if (WifiConnect() != 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
@@ -80,96 +80,115 @@ int WifiServer(void) {
|
|||||||
LOG(("ERROR: Cannot start server.\n"));
|
LOG(("ERROR: Cannot start server.\n"));
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG(
|
LOG(("Server is running and waiting for an HTTP Client connection to %d.%d.%d.%d\n",IP_Addr[0],IP_Addr[1],IP_Addr[2],IP_Addr[3]));
|
||||||
("Server is running and waiting for an HTTP Client connection to %d.%d.%d.%d\n",IP_Addr[0],IP_Addr[1],IP_Addr[2],IP_Addr[3]));
|
|
||||||
|
|
||||||
do {
|
do {
|
||||||
uint8_t RemoteIP[4];
|
uint8_t remote_ip[4];
|
||||||
uint16_t RemotePort;
|
uint16_t remote_port;
|
||||||
|
|
||||||
while (WIFI_STATUS_OK
|
while (WIFI_STATUS_OK
|
||||||
!= WIFI_WaitServerConnection(SOCKET, 1000, RemoteIP,
|
!= WIFI_WaitServerConnection(SOCKET, 1000, remote_ip,
|
||||||
&RemotePort)) {
|
&remote_port)) {
|
||||||
LOG(
|
LOG(
|
||||||
("Waiting connection to %d.%d.%d.%d\n",IP_Addr[0],IP_Addr[1],IP_Addr[2],IP_Addr[3]));
|
("Waiting connection to %d.%d.%d.%d\n",IP_Addr[0],IP_Addr[1],IP_Addr[2],IP_Addr[3]));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG(
|
LOG(
|
||||||
("Client connected %d.%d.%d.%d:%d\n",RemoteIP[0],RemoteIP[1],RemoteIP[2],RemoteIP[3],RemotePort));
|
("Client connected %d.%d.%d.%d:%d\n",remote_ip[0],remote_ip[1],remote_ip[2],remote_ip[3],remote_port));
|
||||||
|
|
||||||
StopServer = WebServerProcess();
|
stop_server = WebServerProcess();
|
||||||
|
|
||||||
if (WIFI_CloseServerConnection(SOCKET) != WIFI_STATUS_OK) {
|
if (WIFI_CloseServerConnection(SOCKET) != WIFI_STATUS_OK) {
|
||||||
LOG(("ERROR: failed to close current Server connection\n"));
|
LOG(("ERROR: failed to close current Server connection\n"));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
} while (StopServer == false);
|
} while (stop_server == false);
|
||||||
|
|
||||||
if (WIFI_STATUS_OK != WIFI_StopServer(SOCKET)) {
|
if (WIFI_STATUS_OK != WIFI_StopServer(SOCKET)) {
|
||||||
LOG(("ERROR: Cannot stop server.\n"));
|
LOG(("ERROR: Cannot stop server.\n"));
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG(("Server is stop\n"));
|
LOG(("Server stopped\n"));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool WebServerProcess(void)
|
static bool WebServerProcess(void)
|
||||||
{
|
{
|
||||||
uint8_t LedState = 1;
|
uint8_t led_state = 1;
|
||||||
SensorData_t aux;
|
SensorData_t tmp; // struct temporal
|
||||||
uint16_t respLen;
|
uint16_t response_length;
|
||||||
static uint8_t resp[1024];
|
static uint8_t response[1024];
|
||||||
bool stopserver = false;
|
bool stop_server = false;
|
||||||
|
|
||||||
if (WIFI_STATUS_OK
|
if (WIFI_STATUS_OK == WIFI_ReceiveData(SOCKET, response, sizeof(response) - 1, &response_length, WIFI_READ_TIMEOUT))
|
||||||
== WIFI_ReceiveData(SOCKET, resp, 1000, &respLen,
|
{
|
||||||
WIFI_READ_TIMEOUT)) {
|
LOG(("get %d byte from server\n", response_length));
|
||||||
LOG(("get %d byte from server\n",respLen));
|
|
||||||
|
|
||||||
if (respLen > 0) {
|
if (response_length > 0)
|
||||||
if (strstr((char*) resp, "GET")) /* GET: put web page */
|
{
|
||||||
{
|
if (response_length < sizeof(response))
|
||||||
aux = GetSensors(); //BSP_TSENSOR_ReadTemp();
|
response[response_length] = '\0';
|
||||||
if (SendWebPage(LedState, aux) != WIFI_STATUS_OK) {
|
else
|
||||||
LOG(("> ERROR : Cannot send web page\n"));
|
response[sizeof(response) - 1] = '\0';
|
||||||
} else {
|
|
||||||
LOG(("Send page after GET command\n"));
|
|
||||||
}
|
|
||||||
} else if (strstr((char*) resp, "POST"))/* POST: received info */
|
|
||||||
{
|
|
||||||
LOG(("Post request\n"));
|
|
||||||
|
|
||||||
if (strstr((char*) resp, "radio")) {
|
char method[8] = {0};
|
||||||
if (strstr((char*) resp, "radio=0")) {
|
char path[64] = {0};
|
||||||
LedState = 0;
|
|
||||||
QueueLed(LedState);
|
|
||||||
} else if (strstr((char*) resp, "radio=1")) {
|
|
||||||
LedState = 1;
|
|
||||||
QueueLed(LedState);
|
|
||||||
}
|
|
||||||
aux = GetSensors(); //BSP_TSENSOR_ReadTemp();
|
|
||||||
}
|
|
||||||
if (strstr((char*) resp, "stop_server")) {
|
|
||||||
if (strstr((char*) resp, "stop_server=0")) {
|
|
||||||
stopserver = false;
|
|
||||||
} else if (strstr((char*) resp, "stop_server=1")) {
|
|
||||||
stopserver = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
aux = GetSensors(); //BSP_TSENSOR_ReadTemp();
|
|
||||||
if (SendWebPage(LedState, aux) != WIFI_STATUS_OK) {
|
|
||||||
LOG(("> ERROR : Cannot send web page\n"));
|
|
||||||
} else {
|
|
||||||
LOG(("Send Page after POST command\n"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
LOG(("Client close connection\n"));
|
|
||||||
}
|
|
||||||
return stopserver;
|
|
||||||
|
|
||||||
|
sscanf((char*)response, "%7s %63s", method, path);
|
||||||
|
|
||||||
|
LOG(("Request: method=%s path=%s\n", method, path));
|
||||||
|
|
||||||
|
// --- GET ----------------------------------------
|
||||||
|
if (strcmp(method, "GET") == 0)
|
||||||
|
{
|
||||||
|
tmp = GetSensors();
|
||||||
|
if (SendJsonResponse(&tmp) != WIFI_STATUS_OK) {
|
||||||
|
LOG(("> ERROR : Cannot send JSON\n"));
|
||||||
|
} else {
|
||||||
|
LOG(("Send JSON after GET\n"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- POST ----------------------------------------
|
||||||
|
else if (strcmp(method, "POST") == 0)
|
||||||
|
{
|
||||||
|
if (strstr((char*)response, "radio")) {
|
||||||
|
if (strstr((char*)response, "radio=0")) {
|
||||||
|
led_state = 0;
|
||||||
|
QueueLed(led_state);
|
||||||
|
} else if (strstr((char*)response, "radio=1")) {
|
||||||
|
led_state = 1;
|
||||||
|
QueueLed(led_state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (strstr((char*)response, "stop_server")) {
|
||||||
|
if (strstr((char*)response, "stop_server=0"))
|
||||||
|
stop_server = false;
|
||||||
|
else if (strstr((char*)response, "stop_server=1"))
|
||||||
|
stop_server = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
tmp = GetSensors();
|
||||||
|
|
||||||
|
if (SendJsonResponse(&tmp) != WIFI_STATUS_OK) {
|
||||||
|
LOG(("> ERROR : Cannot send JSON after POST\n"));
|
||||||
|
} else {
|
||||||
|
LOG(("Send JSON after POST\n"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- INVALID METHOD ----------------------------------------
|
||||||
|
else {
|
||||||
|
LOG(("Unsupported method: %s\n", method));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
LOG(("Client close connection or receive timeout\n"));
|
||||||
|
}
|
||||||
|
|
||||||
|
return stop_server;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -177,51 +196,74 @@ static bool WebServerProcess(void)
|
|||||||
* @param None
|
* @param None
|
||||||
* @retval None
|
* @retval None
|
||||||
*/
|
*/
|
||||||
static WIFI_Status_t SendWebPage(uint8_t ledIsOn, SensorData_t payload) {
|
static WIFI_Status_t SendJsonResponse(SensorData_t* payload)
|
||||||
uint8_t temp[50];
|
{
|
||||||
uint16_t SentDataLength;
|
uint16_t sent_data_length = 0;
|
||||||
WIFI_Status_t ret;
|
WIFI_Status_t return_status;
|
||||||
|
|
||||||
/* construct web page content */
|
char body[512];
|
||||||
strcpy((char*) http,
|
int body_length = snprintf(body, sizeof(body),
|
||||||
(char*) "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nPragma: no-cache\r\n\r\n");
|
"{"
|
||||||
strcat((char*) http, (char*) "<html>\r\n<body>\r\n");
|
"\"humidity\": %.2f,"
|
||||||
strcat((char*) http, (char*) "<title>STM32 Web Server</title>\r\n");
|
"\"temperature\": %.2f,"
|
||||||
strcat((char*) http,
|
"\"pressure\": %.2f,"
|
||||||
(char*) "<h2>InventekSys : Web Server using Es-Wifi with STM32</h2>\r\n");
|
"\"accelerometer\": [%d, %d, %d],"
|
||||||
strcat((char*) http, (char*) "<br /><hr>\r\n");
|
"\"gyroscope\": [%.2f, %.2f, %.2f],"
|
||||||
strcat((char*) http,
|
"\"magnetometer\": [%d, %d, %d]"
|
||||||
(char*) "<p><form method=\"POST\"><strong>Temp: <input type=\"text\" value=\"");
|
"}",
|
||||||
sprintf((char*) temp, "%f", payload.temperature);
|
payload->humidity,
|
||||||
strcat((char*) http, (char*) temp);
|
payload->temperature,
|
||||||
strcat((char*) http, (char*) "\"> <sup>O</sup>C");
|
payload->pressure,
|
||||||
|
payload->accelerometer[0], payload->accelerometer[1], payload->accelerometer[2],
|
||||||
|
payload->gyroscope[0], payload->gyroscope[1], payload->gyroscope[2],
|
||||||
|
payload->magnetometer[0], payload->magnetometer[1], payload->magnetometer[2]
|
||||||
|
);
|
||||||
|
|
||||||
if (ledIsOn) {
|
if (body_length < 0) body_length = 0;
|
||||||
strcat((char*) http,
|
if (body_length >= (int)sizeof(body)) body_length = (int)sizeof(body) - 1;
|
||||||
(char*) "<p><input type=\"radio\" name=\"radio\" value=\"0\" >LED off");
|
|
||||||
strcat((char*) http,
|
|
||||||
(char*) "<br><input type=\"radio\" name=\"radio\" value=\"1\" checked>LED on");
|
|
||||||
} else {
|
|
||||||
strcat((char*) http,
|
|
||||||
(char*) "<p><input type=\"radio\" name=\"radio\" value=\"0\" checked>LED off");
|
|
||||||
strcat((char*) http,
|
|
||||||
(char*) "<br><input type=\"radio\" name=\"radio\" value=\"1\" >LED on");
|
|
||||||
}
|
|
||||||
|
|
||||||
strcat((char*) http,
|
int header_length = snprintf((char*)http, sizeof(http),
|
||||||
(char*) "</strong><p><input type=\"submit\"></form></span>");
|
"HTTP/1.1 200 OK\r\n"
|
||||||
strcat((char*) http, (char*) "</body>\r\n</html>\r\n");
|
"Content-Type: application/json\r\n"
|
||||||
|
"Content-Length: %d\r\n"
|
||||||
|
"Connection: close\r\n"
|
||||||
|
"Pragma: no-cache\r\n"
|
||||||
|
"\r\n",
|
||||||
|
body_length
|
||||||
|
);
|
||||||
|
|
||||||
ret = WIFI_SendData(0, (uint8_t*) http, strlen((char*) http),
|
if (header_length <= 0 || header_length >= (int)sizeof(http))
|
||||||
&SentDataLength, WIFI_WRITE_TIMEOUT);
|
return WIFI_STATUS_ERROR;
|
||||||
|
|
||||||
if ((ret == WIFI_STATUS_OK) && (SentDataLength != strlen((char*) http))) {
|
if ((size_t)header_length + (size_t)body_length >= sizeof(http))
|
||||||
ret = WIFI_STATUS_ERROR;
|
return WIFI_STATUS_ERROR;
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
memcpy(http + header_length, body, body_length);
|
||||||
|
|
||||||
|
size_t total_length = header_length + body_length + 2;
|
||||||
|
|
||||||
|
return_status = WIFI_SendData(
|
||||||
|
SOCKET,
|
||||||
|
(uint8_t*)http,
|
||||||
|
total_length,
|
||||||
|
&sent_data_length,
|
||||||
|
WIFI_WRITE_TIMEOUT
|
||||||
|
);
|
||||||
|
|
||||||
|
if (return_status != WIFI_STATUS_OK) {
|
||||||
|
LOG(("WIFI_SendData return_status != OK (%d)\n", (int)return_status));
|
||||||
|
return return_status;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sent_data_length != (uint16_t)total_length) {
|
||||||
|
LOG(("WIFI_SendData sent %u of %u\n", sent_data_length, (unsigned)total_length));
|
||||||
|
return WIFI_STATUS_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
return WIFI_STATUS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//*************************************************************************//
|
//*************************************************************************//
|
||||||
|
|
||||||
extern SPI_HandleTypeDef hspi3;
|
extern SPI_HandleTypeDef hspi3;
|
||||||
|
|||||||
@@ -84,7 +84,6 @@ void StartDefaultTask(void *argument);
|
|||||||
/* Private user code ---------------------------------------------------------*/
|
/* Private user code ---------------------------------------------------------*/
|
||||||
/* USER CODE BEGIN 0 */
|
/* USER CODE BEGIN 0 */
|
||||||
|
|
||||||
|
|
||||||
/* USER CODE END 0 */
|
/* USER CODE END 0 */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -37,7 +37,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
BSP/%.o BSP/%.su BSP/%.cyclo: ../BSP/%.c BSP/subdir.mk
|
BSP/%.o BSP/%.su BSP/%.cyclo: ../BSP/%.c BSP/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-BSP
|
clean: clean-BSP
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/cs42l51/%.o Components/cs42l51/%.su Components/cs42l51/%.cyclo: ../Components/cs42l51/%.c Components/cs42l51/subdir.mk
|
Components/cs42l51/%.o Components/cs42l51/%.su Components/cs42l51/%.cyclo: ../Components/cs42l51/%.c Components/cs42l51/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-cs42l51
|
clean: clean-Components-2f-cs42l51
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/cs43l22/%.o Components/cs43l22/%.su Components/cs43l22/%.cyclo: ../Components/cs43l22/%.c Components/cs43l22/subdir.mk
|
Components/cs43l22/%.o Components/cs43l22/%.su Components/cs43l22/%.cyclo: ../Components/cs43l22/%.c Components/cs43l22/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-cs43l22
|
clean: clean-Components-2f-cs43l22
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/cy8c4014lqi/%.o Components/cy8c4014lqi/%.su Components/cy8c4014lqi/%.cyclo: ../Components/cy8c4014lqi/%.c Components/cy8c4014lqi/subdir.mk
|
Components/cy8c4014lqi/%.o Components/cy8c4014lqi/%.su Components/cy8c4014lqi/%.cyclo: ../Components/cy8c4014lqi/%.c Components/cy8c4014lqi/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-cy8c4014lqi
|
clean: clean-Components-2f-cy8c4014lqi
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/ft3x67/%.o Components/ft3x67/%.su Components/ft3x67/%.cyclo: ../Components/ft3x67/%.c Components/ft3x67/subdir.mk
|
Components/ft3x67/%.o Components/ft3x67/%.su Components/ft3x67/%.cyclo: ../Components/ft3x67/%.c Components/ft3x67/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-ft3x67
|
clean: clean-Components-2f-ft3x67
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/ft5336/%.o Components/ft5336/%.su Components/ft5336/%.cyclo: ../Components/ft5336/%.c Components/ft5336/subdir.mk
|
Components/ft5336/%.o Components/ft5336/%.su Components/ft5336/%.cyclo: ../Components/ft5336/%.c Components/ft5336/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-ft5336
|
clean: clean-Components-2f-ft5336
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/ft6x06/%.o Components/ft6x06/%.su Components/ft6x06/%.cyclo: ../Components/ft6x06/%.c Components/ft6x06/subdir.mk
|
Components/ft6x06/%.o Components/ft6x06/%.su Components/ft6x06/%.cyclo: ../Components/ft6x06/%.c Components/ft6x06/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-ft6x06
|
clean: clean-Components-2f-ft6x06
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/hts221/%.o Components/hts221/%.su Components/hts221/%.cyclo: ../Components/hts221/%.c Components/hts221/subdir.mk
|
Components/hts221/%.o Components/hts221/%.su Components/hts221/%.cyclo: ../Components/hts221/%.c Components/hts221/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-hts221
|
clean: clean-Components-2f-hts221
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/hx8347g/%.o Components/hx8347g/%.su Components/hx8347g/%.cyclo: ../Components/hx8347g/%.c Components/hx8347g/subdir.mk
|
Components/hx8347g/%.o Components/hx8347g/%.su Components/hx8347g/%.cyclo: ../Components/hx8347g/%.c Components/hx8347g/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-hx8347g
|
clean: clean-Components-2f-hx8347g
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/hx8347i/%.o Components/hx8347i/%.su Components/hx8347i/%.cyclo: ../Components/hx8347i/%.c Components/hx8347i/subdir.mk
|
Components/hx8347i/%.o Components/hx8347i/%.su Components/hx8347i/%.cyclo: ../Components/hx8347i/%.c Components/hx8347i/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-hx8347i
|
clean: clean-Components-2f-hx8347i
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/l3gd20/%.o Components/l3gd20/%.su Components/l3gd20/%.cyclo: ../Components/l3gd20/%.c Components/l3gd20/subdir.mk
|
Components/l3gd20/%.o Components/l3gd20/%.su Components/l3gd20/%.cyclo: ../Components/l3gd20/%.c Components/l3gd20/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-l3gd20
|
clean: clean-Components-2f-l3gd20
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/lis3mdl/%.o Components/lis3mdl/%.su Components/lis3mdl/%.cyclo: ../Components/lis3mdl/%.c Components/lis3mdl/subdir.mk
|
Components/lis3mdl/%.o Components/lis3mdl/%.su Components/lis3mdl/%.cyclo: ../Components/lis3mdl/%.c Components/lis3mdl/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-lis3mdl
|
clean: clean-Components-2f-lis3mdl
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/lps22hb/%.o Components/lps22hb/%.su Components/lps22hb/%.cyclo: ../Components/lps22hb/%.c Components/lps22hb/subdir.mk
|
Components/lps22hb/%.o Components/lps22hb/%.su Components/lps22hb/%.cyclo: ../Components/lps22hb/%.c Components/lps22hb/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-lps22hb
|
clean: clean-Components-2f-lps22hb
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/ls016b8uy/%.o Components/ls016b8uy/%.su Components/ls016b8uy/%.cyclo: ../Components/ls016b8uy/%.c Components/ls016b8uy/subdir.mk
|
Components/ls016b8uy/%.o Components/ls016b8uy/%.su Components/ls016b8uy/%.cyclo: ../Components/ls016b8uy/%.c Components/ls016b8uy/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-ls016b8uy
|
clean: clean-Components-2f-ls016b8uy
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/lsm303c/%.o Components/lsm303c/%.su Components/lsm303c/%.cyclo: ../Components/lsm303c/%.c Components/lsm303c/subdir.mk
|
Components/lsm303c/%.o Components/lsm303c/%.su Components/lsm303c/%.cyclo: ../Components/lsm303c/%.c Components/lsm303c/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-lsm303c
|
clean: clean-Components-2f-lsm303c
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/lsm303dlhc/%.o Components/lsm303dlhc/%.su Components/lsm303dlhc/%.cyclo: ../Components/lsm303dlhc/%.c Components/lsm303dlhc/subdir.mk
|
Components/lsm303dlhc/%.o Components/lsm303dlhc/%.su Components/lsm303dlhc/%.cyclo: ../Components/lsm303dlhc/%.c Components/lsm303dlhc/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-lsm303dlhc
|
clean: clean-Components-2f-lsm303dlhc
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/lsm6dsl/%.o Components/lsm6dsl/%.su Components/lsm6dsl/%.cyclo: ../Components/lsm6dsl/%.c Components/lsm6dsl/subdir.mk
|
Components/lsm6dsl/%.o Components/lsm6dsl/%.su Components/lsm6dsl/%.cyclo: ../Components/lsm6dsl/%.c Components/lsm6dsl/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-lsm6dsl
|
clean: clean-Components-2f-lsm6dsl
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/m24sr/%.o Components/m24sr/%.su Components/m24sr/%.cyclo: ../Components/m24sr/%.c Components/m24sr/subdir.mk
|
Components/m24sr/%.o Components/m24sr/%.su Components/m24sr/%.cyclo: ../Components/m24sr/%.c Components/m24sr/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-m24sr
|
clean: clean-Components-2f-m24sr
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/mfxstm32l152/%.o Components/mfxstm32l152/%.su Components/mfxstm32l152/%.cyclo: ../Components/mfxstm32l152/%.c Components/mfxstm32l152/subdir.mk
|
Components/mfxstm32l152/%.o Components/mfxstm32l152/%.su Components/mfxstm32l152/%.cyclo: ../Components/mfxstm32l152/%.c Components/mfxstm32l152/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-mfxstm32l152
|
clean: clean-Components-2f-mfxstm32l152
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/ov9655/%.o Components/ov9655/%.su Components/ov9655/%.cyclo: ../Components/ov9655/%.c Components/ov9655/subdir.mk
|
Components/ov9655/%.o Components/ov9655/%.su Components/ov9655/%.cyclo: ../Components/ov9655/%.c Components/ov9655/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-ov9655
|
clean: clean-Components-2f-ov9655
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -19,7 +19,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/st25dv/%.o Components/st25dv/%.su Components/st25dv/%.cyclo: ../Components/st25dv/%.c Components/st25dv/subdir.mk
|
Components/st25dv/%.o Components/st25dv/%.su Components/st25dv/%.cyclo: ../Components/st25dv/%.c Components/st25dv/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-st25dv
|
clean: clean-Components-2f-st25dv
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/st7735/%.o Components/st7735/%.su Components/st7735/%.cyclo: ../Components/st7735/%.c Components/st7735/subdir.mk
|
Components/st7735/%.o Components/st7735/%.su Components/st7735/%.cyclo: ../Components/st7735/%.c Components/st7735/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-st7735
|
clean: clean-Components-2f-st7735
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/st7789h2/%.o Components/st7789h2/%.su Components/st7789h2/%.cyclo: ../Components/st7789h2/%.c Components/st7789h2/subdir.mk
|
Components/st7789h2/%.o Components/st7789h2/%.su Components/st7789h2/%.cyclo: ../Components/st7789h2/%.c Components/st7789h2/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-st7789h2
|
clean: clean-Components-2f-st7789h2
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/stmpe1600/%.o Components/stmpe1600/%.su Components/stmpe1600/%.cyclo: ../Components/stmpe1600/%.c Components/stmpe1600/subdir.mk
|
Components/stmpe1600/%.o Components/stmpe1600/%.su Components/stmpe1600/%.cyclo: ../Components/stmpe1600/%.c Components/stmpe1600/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-stmpe1600
|
clean: clean-Components-2f-stmpe1600
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/stmpe811/%.o Components/stmpe811/%.su Components/stmpe811/%.cyclo: ../Components/stmpe811/%.c Components/stmpe811/subdir.mk
|
Components/stmpe811/%.o Components/stmpe811/%.su Components/stmpe811/%.cyclo: ../Components/stmpe811/%.c Components/stmpe811/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-stmpe811
|
clean: clean-Components-2f-stmpe811
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Components/wm8994/%.o Components/wm8994/%.su Components/wm8994/%.cyclo: ../Components/wm8994/%.c Components/wm8994/subdir.mk
|
Components/wm8994/%.o Components/wm8994/%.su Components/wm8994/%.cyclo: ../Components/wm8994/%.c Components/wm8994/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Components-2f-wm8994
|
clean: clean-Components-2f-wm8994
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -1,2 +1,2 @@
|
|||||||
../Core/Src/Sensors.c:13:6:InitSensors 1
|
../Core/Src/Sensors.c:12:6:InitSensors 1
|
||||||
../Core/Src/Sensors.c:24:6:ReadSensors 1
|
../Core/Src/Sensors.c:23:6:ReadSensors 1
|
||||||
|
|||||||
Binary file not shown.
@@ -1,2 +1,2 @@
|
|||||||
../Core/Src/Sensors.c:13:6:InitSensors 8 static
|
../Core/Src/Sensors.c:12:6:InitSensors 8 static
|
||||||
../Core/Src/Sensors.c:24:6:ReadSensors 8 static
|
../Core/Src/Sensors.c:23:6:ReadSensors 16 static
|
||||||
|
|||||||
@@ -3,5 +3,5 @@
|
|||||||
../Core/Src/Tasks.c:33:14:GetSensors 1
|
../Core/Src/Tasks.c:33:14:GetSensors 1
|
||||||
../Core/Src/Tasks.c:41:6:CreateTasks 1
|
../Core/Src/Tasks.c:41:6:CreateTasks 1
|
||||||
../Core/Src/Tasks.c:71:6:TaskSensors 1
|
../Core/Src/Tasks.c:71:6:TaskSensors 1
|
||||||
../Core/Src/Tasks.c:82:6:TaskWebServer 1
|
../Core/Src/Tasks.c:84:6:TaskWebServer 1
|
||||||
../Core/Src/Tasks.c:87:6:TaskLed 1
|
../Core/Src/Tasks.c:89:6:TaskLed 1
|
||||||
|
|||||||
Binary file not shown.
@@ -2,6 +2,6 @@
|
|||||||
../Core/Src/Tasks.c:28:6:QueueLed 16 static
|
../Core/Src/Tasks.c:28:6:QueueLed 16 static
|
||||||
../Core/Src/Tasks.c:33:14:GetSensors 64 static
|
../Core/Src/Tasks.c:33:14:GetSensors 64 static
|
||||||
../Core/Src/Tasks.c:41:6:CreateTasks 16 static
|
../Core/Src/Tasks.c:41:6:CreateTasks 16 static
|
||||||
../Core/Src/Tasks.c:71:6:TaskSensors 16 static
|
../Core/Src/Tasks.c:71:6:TaskSensors 56 static
|
||||||
../Core/Src/Tasks.c:82:6:TaskWebServer 16 static
|
../Core/Src/Tasks.c:84:6:TaskWebServer 16 static
|
||||||
../Core/Src/Tasks.c:87:6:TaskLed 24 static
|
../Core/Src/Tasks.c:89:6:TaskLed 24 static
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
../Core/Src/WebServer.c:32:12:WifiStart 3
|
../Core/Src/WebServer.c:32:12:WifiStart 3
|
||||||
../Core/Src/WebServer.c:51:5:WifiConnect 3
|
../Core/Src/WebServer.c:51:5:WifiConnect 3
|
||||||
../Core/Src/WebServer.c:71:5:WifiServer 7
|
../Core/Src/WebServer.c:71:5:WifiServer 7
|
||||||
../Core/Src/WebServer.c:117:13:WebServerProcess 13
|
../Core/Src/WebServer.c:116:13:WebServerProcess 14
|
||||||
../Core/Src/WebServer.c:180:22:SendWebPage 12
|
../Core/Src/WebServer.c:199:22:SendJsonResponse 8
|
||||||
../Core/Src/WebServer.c:245:6:EXTI1_IRQHandler 1
|
../Core/Src/WebServer.c:287:6:EXTI1_IRQHandler 1
|
||||||
../Core/Src/WebServer.c:255:6:HAL_GPIO_EXTI_Callback 2
|
../Core/Src/WebServer.c:297:6:HAL_GPIO_EXTI_Callback 2
|
||||||
../Core/Src/WebServer.c:274:6:SPI3_IRQHandler 1
|
../Core/Src/WebServer.c:316:6:SPI3_IRQHandler 1
|
||||||
|
|||||||
@@ -72,11 +72,11 @@ Core/Src/WebServer.o: ../Core/Src/WebServer.c ../Core/Inc/WebServer.h \
|
|||||||
../Core/Inc/../../BSP/stm32l475e_iot01_qspi.h \
|
../Core/Inc/../../BSP/stm32l475e_iot01_qspi.h \
|
||||||
../Core/Inc/../../BSP/../Components/mx25r6435f/mx25r6435f.h \
|
../Core/Inc/../../BSP/../Components/mx25r6435f/mx25r6435f.h \
|
||||||
../Core/Inc/../../BSP/stm32l475e_iot01_tsensor.h \
|
../Core/Inc/../../BSP/stm32l475e_iot01_tsensor.h \
|
||||||
/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc/es_wifi.h \
|
/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc/es_wifi.h \
|
||||||
/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc/es_wifi_conf.h \
|
/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc/es_wifi_conf.h \
|
||||||
/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc/wifi.h \
|
/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc/wifi.h \
|
||||||
/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc/es_wifi.h \
|
/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc/es_wifi.h \
|
||||||
/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc/es_wifi_io.h \
|
/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc/es_wifi_io.h \
|
||||||
../Core/Inc/Sensors.h ../Core/Inc/Tasks.h
|
../Core/Inc/Sensors.h ../Core/Inc/Tasks.h
|
||||||
../Core/Inc/WebServer.h:
|
../Core/Inc/WebServer.h:
|
||||||
../Core/Inc/main.h:
|
../Core/Inc/main.h:
|
||||||
@@ -153,10 +153,10 @@ Core/Src/WebServer.o: ../Core/Src/WebServer.c ../Core/Inc/WebServer.h \
|
|||||||
../Core/Inc/../../BSP/stm32l475e_iot01_qspi.h:
|
../Core/Inc/../../BSP/stm32l475e_iot01_qspi.h:
|
||||||
../Core/Inc/../../BSP/../Components/mx25r6435f/mx25r6435f.h:
|
../Core/Inc/../../BSP/../Components/mx25r6435f/mx25r6435f.h:
|
||||||
../Core/Inc/../../BSP/stm32l475e_iot01_tsensor.h:
|
../Core/Inc/../../BSP/stm32l475e_iot01_tsensor.h:
|
||||||
/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc/es_wifi.h:
|
/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc/es_wifi.h:
|
||||||
/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc/es_wifi_conf.h:
|
/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc/es_wifi_conf.h:
|
||||||
/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc/wifi.h:
|
/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc/wifi.h:
|
||||||
/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc/es_wifi.h:
|
/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc/es_wifi.h:
|
||||||
/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc/es_wifi_io.h:
|
/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc/es_wifi_io.h:
|
||||||
../Core/Inc/Sensors.h:
|
../Core/Inc/Sensors.h:
|
||||||
../Core/Inc/Tasks.h:
|
../Core/Inc/Tasks.h:
|
||||||
|
|||||||
Binary file not shown.
@@ -1,8 +1,8 @@
|
|||||||
../Core/Src/WebServer.c:32:12:WifiStart 40 static
|
../Core/Src/WebServer.c:32:12:WifiStart 40 static
|
||||||
../Core/Src/WebServer.c:51:5:WifiConnect 16 static
|
../Core/Src/WebServer.c:51:5:WifiConnect 16 static
|
||||||
../Core/Src/WebServer.c:71:5:WifiServer 40 static
|
../Core/Src/WebServer.c:71:5:WifiServer 40 static
|
||||||
../Core/Src/WebServer.c:117:13:WebServerProcess 144 static
|
../Core/Src/WebServer.c:116:13:WebServerProcess 184 static
|
||||||
../Core/Src/WebServer.c:180:22:SendWebPage 96 static
|
../Core/Src/WebServer.c:199:22:SendJsonResponse 688 static
|
||||||
../Core/Src/WebServer.c:245:6:EXTI1_IRQHandler 8 static
|
../Core/Src/WebServer.c:287:6:EXTI1_IRQHandler 8 static
|
||||||
../Core/Src/WebServer.c:255:6:HAL_GPIO_EXTI_Callback 16 static
|
../Core/Src/WebServer.c:297:6:HAL_GPIO_EXTI_Callback 16 static
|
||||||
../Core/Src/WebServer.c:274:6:SPI3_IRQHandler 8 static
|
../Core/Src/WebServer.c:316:6:SPI3_IRQHandler 8 static
|
||||||
|
|||||||
Binary file not shown.
@@ -1,13 +1,13 @@
|
|||||||
../Core/Src/main.c:94:5:main 1
|
../Core/Src/main.c:93:5:main 1
|
||||||
../Core/Src/main.c:178:6:SystemClock_Config 5
|
../Core/Src/main.c:177:6:SystemClock_Config 5
|
||||||
../Core/Src/main.c:255:13:MX_DFSDM1_Init 2
|
../Core/Src/main.c:254:13:MX_DFSDM1_Init 2
|
||||||
../Core/Src/main.c:293:13:MX_I2C2_Init 4
|
../Core/Src/main.c:292:13:MX_I2C2_Init 4
|
||||||
../Core/Src/main.c:339:13:MX_QUADSPI_Init 2
|
../Core/Src/main.c:338:13:MX_QUADSPI_Init 2
|
||||||
../Core/Src/main.c:372:13:MX_SPI3_Init 2
|
../Core/Src/main.c:371:13:MX_SPI3_Init 2
|
||||||
../Core/Src/main.c:412:13:MX_USART1_UART_Init 2
|
../Core/Src/main.c:411:13:MX_USART1_UART_Init 2
|
||||||
../Core/Src/main.c:447:13:MX_USART3_UART_Init 2
|
../Core/Src/main.c:446:13:MX_USART3_UART_Init 2
|
||||||
../Core/Src/main.c:482:13:MX_USB_OTG_FS_PCD_Init 2
|
../Core/Src/main.c:481:13:MX_USB_OTG_FS_PCD_Init 2
|
||||||
../Core/Src/main.c:517:13:MX_GPIO_Init 1
|
../Core/Src/main.c:516:13:MX_GPIO_Init 1
|
||||||
../Core/Src/main.c:710:6:StartDefaultTask 1
|
../Core/Src/main.c:709:6:StartDefaultTask 1
|
||||||
../Core/Src/main.c:729:6:HAL_TIM_PeriodElapsedCallback 2
|
../Core/Src/main.c:728:6:HAL_TIM_PeriodElapsedCallback 2
|
||||||
../Core/Src/main.c:746:6:Error_Handler 1
|
../Core/Src/main.c:745:6:Error_Handler 1
|
||||||
|
|||||||
Binary file not shown.
@@ -1,13 +1,13 @@
|
|||||||
../Core/Src/main.c:94:5:main 8 static
|
../Core/Src/main.c:93:5:main 8 static
|
||||||
../Core/Src/main.c:178:6:SystemClock_Config 232 static
|
../Core/Src/main.c:177:6:SystemClock_Config 232 static
|
||||||
../Core/Src/main.c:255:13:MX_DFSDM1_Init 8 static
|
../Core/Src/main.c:254:13:MX_DFSDM1_Init 8 static
|
||||||
../Core/Src/main.c:293:13:MX_I2C2_Init 8 static
|
../Core/Src/main.c:292:13:MX_I2C2_Init 8 static
|
||||||
../Core/Src/main.c:339:13:MX_QUADSPI_Init 8 static
|
../Core/Src/main.c:338:13:MX_QUADSPI_Init 8 static
|
||||||
../Core/Src/main.c:372:13:MX_SPI3_Init 8 static
|
../Core/Src/main.c:371:13:MX_SPI3_Init 8 static
|
||||||
../Core/Src/main.c:412:13:MX_USART1_UART_Init 8 static
|
../Core/Src/main.c:411:13:MX_USART1_UART_Init 8 static
|
||||||
../Core/Src/main.c:447:13:MX_USART3_UART_Init 8 static
|
../Core/Src/main.c:446:13:MX_USART3_UART_Init 8 static
|
||||||
../Core/Src/main.c:482:13:MX_USB_OTG_FS_PCD_Init 8 static
|
../Core/Src/main.c:481:13:MX_USB_OTG_FS_PCD_Init 8 static
|
||||||
../Core/Src/main.c:517:13:MX_GPIO_Init 48 static
|
../Core/Src/main.c:516:13:MX_GPIO_Init 48 static
|
||||||
../Core/Src/main.c:710:6:StartDefaultTask 16 static
|
../Core/Src/main.c:709:6:StartDefaultTask 16 static
|
||||||
../Core/Src/main.c:729:6:HAL_TIM_PeriodElapsedCallback 16 static
|
../Core/Src/main.c:728:6:HAL_TIM_PeriodElapsedCallback 16 static
|
||||||
../Core/Src/main.c:746:6:Error_Handler 4 static
|
../Core/Src/main.c:745:6:Error_Handler 4 static
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -49,7 +49,7 @@ C_DEPS += \
|
|||||||
|
|
||||||
# Each subdirectory must supply rules for building sources it contributes
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
Core/Src/%.o Core/Src/%.su Core/Src/%.cyclo: ../Core/Src/%.c Core/Src/subdir.mk
|
Core/Src/%.o Core/Src/%.su Core/Src/%.cyclo: ../Core/Src/%.c Core/Src/subdir.mk
|
||||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/BSP" -I"/home/jomaa/STM32CubeIDE/workspace_1.19.0/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32L475xx -c -I../Core/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc -I../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I../Drivers/CMSIS/Include -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/BSP" -I"/home/jomaa/Projects/git/setr2-monorepo/P5_SETR2/LibWIFI/Inc" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||||
|
|
||||||
clean: clean-Core-2f-Src
|
clean: clean-Core-2f-Src
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user