* Furi: rename and move core * Furi: drop CMSIS_OS header and unused api, partially refactor and cleanup the rest * Furi: CMSIS_OS drop and refactoring. * Furi: refactoring, remove cmsis legacy * Furi: fix incorrect assert on queue deallocation, cleanup timer * Furi: improve delay api, get rid of floats * hal: dropped furi_hal_crc * Furi: move DWT based delay to cortex HAL * Furi: update core documentation Co-authored-by: hedger <hedger@nanode.su>
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
#include "flipper.h"
 | 
						|
#include <applications.h>
 | 
						|
#include <furi.h>
 | 
						|
#include <furi_hal_version.h>
 | 
						|
 | 
						|
#define TAG "Flipper"
 | 
						|
 | 
						|
static void flipper_print_version(const char* target, const Version* version) {
 | 
						|
    if(version) {
 | 
						|
        FURI_LOG_I(
 | 
						|
            TAG,
 | 
						|
            "\r\n\t%s version:\t%s\r\n"
 | 
						|
            "\tBuild date:\t\t%s\r\n"
 | 
						|
            "\tGit Commit:\t\t%s (%s)%s\r\n"
 | 
						|
            "\tGit Branch:\t\t%s",
 | 
						|
            target,
 | 
						|
            version_get_version(version),
 | 
						|
            version_get_builddate(version),
 | 
						|
            version_get_githash(version),
 | 
						|
            version_get_gitbranchnum(version),
 | 
						|
            version_get_dirty_flag(version) ? " (dirty)" : "",
 | 
						|
            version_get_gitbranch(version));
 | 
						|
    } else {
 | 
						|
        FURI_LOG_I(TAG, "No build info for %s", target);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void flipper_init() {
 | 
						|
    flipper_print_version("Firmware", furi_hal_version_get_firmware_version());
 | 
						|
 | 
						|
    FURI_LOG_I(TAG, "starting services");
 | 
						|
 | 
						|
    for(size_t i = 0; i < FLIPPER_SERVICES_COUNT; i++) {
 | 
						|
        FURI_LOG_I(TAG, "starting service %s", FLIPPER_SERVICES[i].name);
 | 
						|
 | 
						|
        FuriThread* thread = furi_thread_alloc();
 | 
						|
 | 
						|
        furi_thread_set_name(thread, FLIPPER_SERVICES[i].name);
 | 
						|
        furi_thread_set_stack_size(thread, FLIPPER_SERVICES[i].stack_size);
 | 
						|
        furi_thread_set_callback(thread, FLIPPER_SERVICES[i].app);
 | 
						|
 | 
						|
        furi_thread_start(thread);
 | 
						|
    }
 | 
						|
 | 
						|
    FURI_LOG_I(TAG, "services startup complete");
 | 
						|
}
 |