代码拉取完成,页面将自动刷新
#include <stdio.h>
#include <stdlib.h>
#include "ymodem_llv_porting.h"
/**
* rx a byte from uart, NO BLOCKING
* return 1 = ok
* -1 = gg
*/
int SerialKeyPressed(unsigned char *c)
{
//printf("SerialKeyPressed\n");
/*
if (FLAG) {
*c = REG;
return 1;
}
return 0;
*/
}
/**
*
* tx a byte through uart
*/
void SerialPutChar(unsigned char c)
{
//printf("SerialPutChar\n");
}
int FLASH_PagesMask(int size)
{
return (size/PAGE_SIZE + 1);
}
/**
*
* return 0 = ok
*/
int FLASH_ErasePage(int addr)
{
#ifdef CONFIG_YMODEM_RX_FLASH
//flash_erase_page();
#endif
}
/**
*
* return 0 = ok
*/
int FLASH_ProgramWord(int FlashDestination, int RamSource)
{
#ifdef CONFIG_YMODEM_RX_FLASH
//flash_write_4byte();
#endif
return 0;
}
void Str2Int(char *file_size, unsigned int *size)
{
*size = strtoul(file_size, NULL, 16);
}
void Int2Str (char* file_ptr, int leng)
{
sprintf(file_ptr, "%x", leng);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。