implemented PID Loop

This commit is contained in:
2022-01-09 14:23:22 +01:00
parent ff5a05d32b
commit 26522970e7
8 changed files with 74 additions and 27 deletions

View File

@ -21,18 +21,20 @@
//
// Description: This source file contains all functions dealing with internal flash for User Settings
//
// STM32L432KBUX_FLASH.ld
//
// DATA (rwx) : ORIGIN = 0x801F800, LENGTH = 2K
//
///* Sections */
//SECTIONS
//{
// /* NOLOAD is required for not ereasing this block */
// .user_data (NOLOAD) :
// {
// . = ALIGN(4);
// *(.user_data)
// . = ALIGN(4);
// } > DATA*/
// /* Sections */
// SECTIONS
// {
// /* NOLOAD is required for not ereasing this block */
// .user_data (NOLOAD) :
// {
// . = ALIGN(4);
// *(.user_data)
// . = ALIGN(4);
// } > DATA*/
//
//=================================================================================================
@ -133,7 +135,7 @@ __attribute__((__section__(".user_data"))) const uint8_t userConfig[8];
BOOL USFL_boInitializeModule( VOID )
{
// TODO: notes
return( TRUE );
}