پاسخ : USB در XMEGA
با سلام
برای استفاده از CDC در Xmega فرکانس کاری میکرو چقدر باید باشه؟
با سلام
برای استفاده از CDC در Xmega فرکانس کاری میکرو چقدر باید باشه؟
/** * \file * * \brief Empty user application template * */ /** * \mainpage User Application template doxygen documentation * * \par Empty user application template * * Bare minimum empty user application template * * \par Content * * -# Include the ASF header files (through asf.h) * -# Minimal main function that starts with a call to board_init() * -# "Insert application code here" comment * */ /* * Include header files for all drivers that have been imported from * Atmel Software Framework (ASF). */ #include <asf.h> static bool my_flag_autorize_cdc_transfert = false; bool my_callback_cdc_enable(void) { my_flag_autorize_cdc_transfert = true; return true; } void my_callback_cdc_disable(void) { my_flag_autorize_cdc_transfert = false; } void task(void) { if (my_flag_autorize_cdc_transfert) { udi_cdc_putc('A'); udi_cdc_getc(); } } void usb_init(void) { udc_start(); } int main (void) { board_init(); sysclk_init(); irq_initialize_vectors(); cpu_irq_enable(); sleepmgr_init(); // Optional udc_start(); while(1) { sleepmgr_enter_sleep(); // Optional } // Insert application code here, after the board has been initialized. }
◙◙◙◙◙ میخوام به دوستان یه کتاب معرفی کنم! وقت کردید، بخونید - اسمش هست قرآن، سال نشر 10، نویسنده: خدا . ◙◙◙◙◙ |
دیدگاه