summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Nathael Pajani [Thu, 10 Nov 2022 11:34:42 +0000 (12:34 +0100)]
Update main README
Nathael Pajani [Thu, 10 Nov 2022 11:34:28 +0000 (12:34 +0100)]
Update/Fix uSD support
Now need to test effective data logging.
Nathael Pajani [Tue, 8 Nov 2022 17:26:26 +0000 (18:26 +0100)]
Stop tracking generated binary file
Nathael Pajani [Thu, 24 Sep 2020 11:09:03 +0000 (13:09 +0200)]
Update gitignore files to prevent binary inclusions
Nathael Pajani [Thu, 11 Jun 2020 19:02:51 +0000 (21:02 +0200)]
Communication (data) decoding app for scialys module
Nathael Pajani [Tue, 8 Nov 2022 16:59:05 +0000 (17:59 +0100)]
Adding README file and .gitignore file to the repository.
Nathael Pajani [Mon, 7 Nov 2022 22:41:44 +0000 (23:41 +0100)]
Intermediate update of uSD support for Scialys App
Nathael Pajani [Sat, 15 Oct 2022 00:39:04 +0000 (02:39 +0200)]
Huge update of app configuration menu (params)
Nathael Pajani [Sat, 15 Oct 2022 00:34:58 +0000 (02:34 +0200)]
Bug fix, data corruption when SD card not present or not responding
Nathael Pajani [Sun, 12 Jun 2022 20:45:42 +0000 (22:45 +0200)]
Remove unused variable
Nathael Pajani [Sun, 12 Jun 2022 18:53:31 +0000 (20:53 +0200)]
Split interface.c in two files, one for the interface code, one for the parameters configuration menu
Nathael Pajani [Mon, 7 Feb 2022 10:39:32 +0000 (11:39 +0100)]
Fix button events so interface is no more sensible to small electro-static discharges
Nathael Pajani [Thu, 11 Nov 2021 02:54:47 +0000 (03:54 +0100)]
Namespace update for time and uSD part of Scialys support app Also add comments and reorder functions according to call order from main().
Nathael Pajani [Thu, 11 Nov 2021 02:49:10 +0000 (03:49 +0100)]
Namespace update for time handling part of Scialys support app
Nathael Pajani [Thu, 11 Nov 2021 02:48:36 +0000 (03:48 +0100)]
Namespace update for uSD part of Scialys support app
Nathael Pajani [Sun, 25 Apr 2021 22:06:54 +0000 (00:06 +0200)]
Update headers and oldest valid date/time
Nathael Pajani [Thu, 19 Nov 2020 18:55:48 +0000 (19:55 +0100)]
Scialys support going on ...
Nathael Pajani [Fri, 12 Jun 2020 23:31:56 +0000 (01:31 +0200)]
Updated v10 Adding max temps hysteresys Working on configuration menu
Nathael Pajani [Thu, 11 Jun 2020 19:05:16 +0000 (21:05 +0200)]
Changes to old v08 scialys version.
Nathael Pajani [Thu, 11 Jun 2020 19:04:23 +0000 (21:04 +0200)]
Removed unused test apps for old versions
Nathael Pajani [Thu, 11 Jun 2020 19:03:46 +0000 (21:03 +0200)]
Scialys v09 app
Nathael Pajani [Thu, 11 Jun 2020 19:03:25 +0000 (21:03 +0200)]
Scialys v10 app, initial version
Nathael Pajani [Thu, 13 Jun 2019 19:16:41 +0000 (21:16 +0200)]
Scialys app v0.3.2 Fix manual forced heating Change fan command (always on when cmd != 0) Add version info on display
Nathael Pajani [Thu, 13 Jun 2019 18:27:13 +0000 (20:27 +0200)]
First release of app for v08 of Scialys module
Nathael Pajani [Thu, 11 Apr 2019 14:00:45 +0000 (16:00 +0200)]
Test support of scyalis v07 boards
Nathael Pajani [Thu, 21 Feb 2019 15:34:16 +0000 (16:34 +0100)]
Update all files to mention version 3 of the GPL.
Nathael Pajani [Thu, 3 Jan 2019 22:11:11 +0000 (23:11 +0100)]
Scialys test 230V
Nathael Pajani [Thu, 3 Jan 2019 22:10:59 +0000 (23:10 +0100)]
Scialys test mosfet
Nathael Pajani [Thu, 3 Jan 2019 22:10:48 +0000 (23:10 +0100)]
Scialys test 12V
Nathael Pajani [Thu, 3 Jan 2019 21:39:55 +0000 (22:39 +0100)]
Dev projet scialys, support version 0.3 (obsolete)
Nathael Pajani [Thu, 3 Jan 2019 21:05:02 +0000 (22:05 +0100)]
Current dev status for the version 5 of the Scialys module
Nathael Pajani [Sat, 1 Dec 2018 13:18:45 +0000 (14:18 +0100)]
Fix over-heating protectioin for beta version of scialys module
Cyprien Laplace [Sat, 24 Jun 2017 20:47:22 +0000 (16:47 -0400)]
oled: add support for SPI ssd130x displays
For I2C displays, the bus_type needs to be added:
+ .bus_type = SSD130x_BUS_I2C,
.address = DISPLAY_ADDR,
.bus_num = I2C0,
To use a SPI display:
1/ add the SSP include:
#include "drivers/ssp.h"
2/ add the SPI pins to the init table:
/* SPI : Display */
{ LPC_SSP0_SCLK_PIO_0_14, LPC_IO_DIGITAL },
{ LPC_SSP0_MISO_PIO_0_16, LPC_IO_DIGITAL },
{ LPC_SSP0_MOSI_PIO_0_17, LPC_IO_DIGITAL },
3/ update the oled_display conf:
.bus_type = SSD130x_BUS_SPI,
.bus_num = SSP_BUS_0,
.gpio_dc = LPC_GPIO_0_0,
.gpio_cs = LPC_GPIO_1_0,
.gpio_rst = LPC_GPIO_0_31,
4/ initialize the SPI bus:
ssp_master_on(SSP_BUS_0, LPC_SSP_FRAME_SPI, 8, 8*1000*1000);
David Odin [Wed, 19 Apr 2017 18:38:14 +0000 (20:38 +0200)]
Updated for the new ssd130x driver api
Nathael Pajani [Wed, 19 Apr 2017 00:55:03 +0000 (02:55 +0200)]
Add a test in apps makefiles to get proper function of :make in vim when the user has added "let $COMPILE_FROM_IDE = 1" to his ~/.vimrc
Nathael Pajani [Tue, 28 Mar 2017 13:27:39 +0000 (15:27 +0200)]
Latest version of the test code for the beta version.
Nathael Pajani [Wed, 26 Oct 2016 23:51:00 +0000 (01:51 +0200)]
Scialys module support going on. Almost all board functions tested (missing : EJP detection and µSD card)
Nathael Pajani [Tue, 27 Sep 2016 22:00:26 +0000 (00:00 +0200)]
Support for beta version of Scialys module - initial commit
Nathael Pajani [Tue, 27 Sep 2016 21:58:34 +0000 (23:58 +0200)]
Code for support of alpha version of Scialys module