 917410a0a8
			
		
	
	
		917410a0a8
		
			
		
	
	
	
	
		
			
			* fbt: reworking targets & assets handling WIP * fbt: dist fixes * fbt: moved SD card resources to owning apps * unit_tests: moved resources to app folder * github: updated unit_tests paths * github: packaging fixes * unit_tests: fixes * fbt: assets: internal cleanup * fbt: reworked assets handling * github: unit_tests: reintroducing fixes * minor cleanup * fbt: naming changes to reflect private nature of scons tools * fbt: resources: fixed dist archive paths * docs: updated paths * docs: updated more paths * docs: included "resources" parameter in app manifest docs; updated assets readme * updated gitignore for assets * github: updated action versions * unit_tests: restored timeout; scripts: assets: logging changes * gh: don't upload desktop animations for unit test run Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			87 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| /**
 | |
|  * @file furi_hal_sd.h
 | |
|  * SD Card HAL API
 | |
|  */
 | |
| 
 | |
| #include <furi.h>
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| typedef struct {
 | |
|     uint64_t capacity; /*!< total capacity in bytes */
 | |
|     uint32_t block_size; /*!< block size */
 | |
|     uint32_t logical_block_count; /*!< logical capacity in blocks */
 | |
|     uint32_t logical_block_size; /*!< logical block size in bytes */
 | |
| 
 | |
|     uint8_t manufacturer_id; /*!< manufacturer ID */
 | |
|     char oem_id[3]; /*!< OEM ID, 2 characters + null terminator */
 | |
|     char product_name[6]; /*!< product name, 5 characters + null terminator */
 | |
|     uint8_t product_revision_major; /*!< product revision major */
 | |
|     uint8_t product_revision_minor; /*!< product revision minor */
 | |
|     uint32_t product_serial_number; /*!< product serial number */
 | |
|     uint8_t manufacturing_month; /*!< manufacturing month */
 | |
|     uint16_t manufacturing_year; /*!< manufacturing year */
 | |
| } FuriHalSdInfo;
 | |
| 
 | |
| /** 
 | |
|  * @brief Init SD card presence detection
 | |
|  */
 | |
| void furi_hal_sd_presence_init();
 | |
| 
 | |
| /** 
 | |
|  * @brief Get SD card status
 | |
|  * @return true if SD card is present
 | |
|  */
 | |
| bool furi_hal_sd_is_present();
 | |
| 
 | |
| /**
 | |
|  * @brief SD card max mount retry count
 | |
|  * @return uint8_t 
 | |
|  */
 | |
| uint8_t furi_hal_sd_max_mount_retry_count();
 | |
| 
 | |
| /**
 | |
|  * @brief Init SD card
 | |
|  * @param power_reset reset card power
 | |
|  * @return FuriStatus 
 | |
|  */
 | |
| FuriStatus furi_hal_sd_init(bool power_reset);
 | |
| 
 | |
| /**
 | |
|  * @brief Read blocks from SD card
 | |
|  * @param buff 
 | |
|  * @param sector 
 | |
|  * @param count 
 | |
|  * @return FuriStatus 
 | |
|  */
 | |
| FuriStatus furi_hal_sd_read_blocks(uint32_t* buff, uint32_t sector, uint32_t count);
 | |
| 
 | |
| /**
 | |
|  * @brief Write blocks to SD card
 | |
|  * @param buff 
 | |
|  * @param sector 
 | |
|  * @param count 
 | |
|  * @return FuriStatus 
 | |
|  */
 | |
| FuriStatus furi_hal_sd_write_blocks(const uint32_t* buff, uint32_t sector, uint32_t count);
 | |
| 
 | |
| /**
 | |
|  * @brief Get SD card info
 | |
|  * @param info 
 | |
|  * @return FuriStatus 
 | |
|  */
 | |
| FuriStatus furi_hal_sd_info(FuriHalSdInfo* info);
 | |
| 
 | |
| /**
 | |
|  * @brief Get SD card state
 | |
|  * @return FuriStatus 
 | |
|  */
 | |
| FuriStatus furi_hal_sd_get_card_state();
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |