F1C100s_projects
F1C100s_projects copied to clipboard
Low-level libraries and bare metal projects for allwinner F1C100s SOC
Hi there, I wanted to add flow control support to my uart port. Current driver disables the flow control by default. I want to use RTS/CTS flow control, to achieve...
I'm trying to build a USB HOST, but it's too complicated Can you writer that driver for F1c100s?
hello dear sir i made a project with this awesome repasitory of yours. everything is working perofect but the important toch screen have error. touch_init_lvgl(); not defined ! can you...
hi nikolay!! thanks for this code. i try run freertos but not work. i define irq_handler_global() as weak in intc.c file and use this code : https://www.mediafire.com/file/nccsuu4960czz3c/ARM926EJ-S.rar/file task 1 is...
void gpioe_irq_handler(void) { printf(","); uint8_t a = eint_pin_get_status(GPIOE, 11); printf("status = %d , %d\r\n",a); } int main(void) { ............................................................. gpio_pin_init(GPIOE, 11, GPIO_MODE_AF5, GPIO_PULL_NONE, GPIO_DRV_3); eint_pin_init(GPIOE, 11, EINT_TRG_RISING); eint_pin_enable(GPIOE,11); f1c100s_intc_set_isr(F1C100S_IRQ_GPIOE, gpioe_irq_handler,0);...
New version xpack-arm-none-eabi-gcc-11.3.1-1.1 needs an edit in f1c100s_sram.ld file like below SECTIONS { .text : { PROVIDE(__image_start = .); PROVIDE(__text_start = .); build/start.o (.text) *(.text*) _***(.init.text) *(.exit.text) *(.glue*) *(.note.gnu.build-id)**_ PROVIDE(__text_end...
There is no I2C library or implementation. can you help me how I can activate it ?