 cfcdff8346
			
		
	
	
		cfcdff8346
		
			
		
	
	
	
	
		
			
			* ibutton: add cli commands * ibutton/scene: add cli event send * ibutton: make separate scenes for cli commands * ibutton/scene: add timeout to cli scenes * ibutton: fix reading key data from cli * cli: add cli_delete_command to API * ibutton: delete cli command after app exit * cli: free allocated string Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| #include <m-string.h>
 | |
| 
 | |
| /* Cli type
 | |
|  * Anonymous structure. Use cli_i.h if you need to go deeper.
 | |
|  */
 | |
| typedef struct Cli Cli;
 | |
| 
 | |
| /* Cli callback function pointer.
 | |
|  * Implement this interface and use add_cli_command
 | |
|  * @param args - string with what was passed after command
 | |
|  * @param context - pointer to whatever you gave us on cli_add_command
 | |
|  */
 | |
| typedef void (*CliCallback)(string_t args, void* context);
 | |
| 
 | |
| /* Add cli command
 | |
|  * Registers you command callback
 | |
|  * @param cli - pointer to cli instance
 | |
|  * @param name - command name
 | |
|  * @param callback - callback function
 | |
|  * @param context - pointer to whatever we need to pass to callback
 | |
|  */
 | |
| void cli_add_command(Cli* cli, const char* name, CliCallback callback, void* context);
 | |
| 
 | |
| /* Delete cli command
 | |
|  * @param cli - pointer to cli instance
 | |
|  * @param name - command name
 | |
|  */
 | |
| void cli_delete_command(Cli* cli, const char* name);
 | |
| 
 | |
| /* Read from terminal
 | |
|  * Do it only from inside of cli call.
 | |
|  * @param cli - Cli instance
 | |
|  * @param buffer - pointer to buffer
 | |
|  * @param size - size of buffer in bytes
 | |
|  * @return bytes written
 | |
|  */
 | |
| size_t cli_read(Cli* cli, uint8_t* buffer, size_t size);
 | |
| 
 | |
| /* Write to terminal
 | |
|  * Do it only from inside of cli call.
 | |
|  * @param cli - Cli instance
 | |
|  * @param buffer - pointer to buffer
 | |
|  * @param size - size of buffer in bytes
 | |
|  * @return bytes written
 | |
|  */
 | |
| void cli_write(Cli* cli, uint8_t* buffer, size_t size);
 | |
| 
 | |
| /* Read character
 | |
|  * @param cli - Cli instance
 | |
|  * @return char
 | |
|  */
 | |
| char cli_getc(Cli* cli);
 | |
| 
 | |
| /* New line 
 | |
|  * Send new ine sequence
 | |
|  */
 | |
| void cli_nl();
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |