forked from j3d1/fiatlux
Compare commits
1 commit
jedi/dev/s
...
stable
Author | SHA1 | Date | |
---|---|---|---|
5fa1ec14e2 |
4 changed files with 2 additions and 1168437 deletions
|
@ -57,6 +57,7 @@ steps:
|
||||||
base_url: https://git.neulandlabor.de/
|
base_url: https://git.neulandlabor.de/
|
||||||
files:
|
files:
|
||||||
- firmware/firmware/fiatlux.bin
|
- firmware/firmware/fiatlux.bin
|
||||||
|
- firmware/otaflash.py
|
||||||
- pcb/pcb.zip
|
- pcb/pcb.zip
|
||||||
checksum:
|
checksum:
|
||||||
- sha512
|
- sha512
|
||||||
|
|
1168411
firmware/livc.s
1168411
firmware/livc.s
File diff suppressed because it is too large
Load diff
|
@ -10,7 +10,6 @@
|
||||||
#include <spiflash.h>
|
#include <spiflash.h>
|
||||||
|
|
||||||
#include <espressif/user_interface.h>
|
#include <espressif/user_interface.h>
|
||||||
#include <esp/uart.h>
|
|
||||||
#include <espressif/esp_system.h>
|
#include <espressif/esp_system.h>
|
||||||
#include <rboot/rboot.h>
|
#include <rboot/rboot.h>
|
||||||
#include <rboot-ota/rboot-api.h>
|
#include <rboot-ota/rboot-api.h>
|
||||||
|
@ -49,20 +48,6 @@ void system_init_config() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int fputc(int ch, FILE *f)
|
|
||||||
{
|
|
||||||
uart_putc(0, '0');
|
|
||||||
uart_putc(0, ch);
|
|
||||||
return ch;
|
|
||||||
}
|
|
||||||
|
|
||||||
int puts (const char *str)
|
|
||||||
{
|
|
||||||
char c;
|
|
||||||
while((c=*str++))fputc(c,0);
|
|
||||||
return str;
|
|
||||||
}
|
|
||||||
|
|
||||||
#define MAX_IMAGE_SIZE 0x100000
|
#define MAX_IMAGE_SIZE 0x100000
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
|
|
|
@ -304,13 +304,3 @@ extern "C" void httpd_task(void *pvParameters) {
|
||||||
|
|
||||||
vTaskDelete(nullptr);
|
vTaskDelete(nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <espressif/esp_common.h>
|
|
||||||
|
|
||||||
void test(){
|
|
||||||
|
|
||||||
printf("foo\n");
|
|
||||||
printf("Warning: WiFi config, sysparam not initialized\n");
|
|
||||||
printf("SDK version: %s\n", sdk_system_get_sdk_version());
|
|
||||||
};
|
|
Loading…
Reference in a new issue