1 Star 0 Fork 0

zx2591/rz_ymodem

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ymodem_llv_porting.c 975 Bytes
一键复制 编辑 原始数据 按行查看 历史
zurueck 提交于 2020-12-16 14:09 . add porting.c for future usage
#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);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zx2591/rz_ymodem.git
[email protected]:zx2591/rz_ymodem.git
zx2591
rz_ymodem
rz_ymodem
main

搜索帮助