C & micro & fpga
1.7K subscribers
187 photos
9 videos
98 files
39 links
Admin : فرهاد ناصری زاده
@farhad_naserizadeh
@farhad3412
آموزش زبان C و میکروکنترلرها
لینک گروه

https://t.iss.one/joinchat/HU0aoFCv4MTCt4fz0h6AZg
کانال های مرتبط با این کانال :
@raspberry_python
@micropython_iot
@ai_dsp
Download Telegram
Getting Started with Tiva
ARM Cortex M4
Microcontrollers

🌟2018

@c_micro
Dhananjay_V_Gadre,_Sarthak_Gupta.pdf
13.2 MB
Getting Started with Tiva
ARM Cortex M4
Microcontrollers

🌟2018

@c_micro
Forwarded from 🐍 Python & Raspberry 🐍 (F.Naserizadeh)
ISE-QuickStart-Last_2.pdf
2.4 MB
آموزش كار با نرم افزار ISE (فارسی)

بر اساس نسخه ise 14.5
#FPGA

🆔 @raspberry_python
🌟 C Programming for Embedded Systems 👇

🆔 @c_micro
CPES.pdf
657.5 KB
🌟 C Programming for Embedded Systems

🆔 @c_micro
Arduino + Android Projects for the Evil Genius
@c_micro
#PDF
Arduino_+_Android_Projects_for_the.pdf
12.7 MB
Arduino + Android Projects for the Evil Genius
@c_micro
#PDF
Brown Geoffrey. - Discovering the STM32 Microcontroller .pdf
12.7 MB
🔴 Discovering the STM32 Microcontroller

2016

🆔 @c_micro
ارتباط سریال در رزبری پای با زبان C

#include <stdio.h>
#include <string.h>
#include <errno.h>

#include <wiringPi.h>
#include <wiringSerial.h>

int main ()

{
int serial_port ;
char dat;
if ((serial_port = serialOpen ("/dev/ttyS0", 9600)) < 0) /* open serial port */
{
fprintf (stderr, "Unable to open serial device: %s\n", strerror (errno)) ;
return 1 ;
}


if (wiringPiSetup () == -1) /* initializes wiringPi setup */
{
fprintf (stdout, "Unable to start wiringPi: %s\n", strerror (errno)) ;
return 1 ;
}


while(1){

if(serialDataAvail (serial_port) )
{
dat = serialGetchar (serial_port);
/* receive character serially*/

printf ("%c", dat) ;
fflush (stdout) ;
serialPutchar(serial_port, dat);

/* transmit character serially on port */

}
}

}

🆔 @c_micro
Warrenآ Gay_Beginning_STM32_Developing.pdf
6.1 MB
شروع با stm32

🌟انتشار 2018 جدید

🆔 @C_micro
کتاب آموزش زبان C
🌟 2014

🆔 @c_micro
C Programming [tutorialspoint].pdf
1.5 MB
کتاب آموزش زبان C
🌟 2014

🆔 @c_micro
Forwarded from Raspberry Project
فانکشن بافر FIFO جهت استفادهدرر میکروهای Stm32 و توابع Hal

/***Interupt Recived Uart Fifo Buffer Stm32 Hal***/


void HAL_UART_RxCpltCallback (UART_HandleTypeDef *huart){
cnt++;
uint8_t i;
if(huart->Instance == USART1);
{
if(Rx_indx==0){for(i=0;i<150;i++)Rx_Buffer[i]=0;}
if(UART_Buffer[0]==36)
{
Rx_indx=0;
}
else if(UART_Buffer[0]!=UART_BUFFER_SIZE)
{
Rx_Buffer[Rx_indx++]=UART_Buffer[0];
}
else
{
Rx_indx=0;
Transfer_cplt=1;
}
HAL_UART_Receive_IT(&huart1,UART_Buffer,UART_BUFFER_SIZE);

}
}



@Rasppberryproject
Forwarded from 🐍 Python & Raspberry 🐍 (F.Naserizadeh)
طراحی سیستم های امبدد و اینترنت اشیا توسط ARM 👇

🌟 انتشارات وایلی 2018

🔰 @raspberry_python
🔰 @RaspberryProject
Forwarded from 🐍 Python & Raspberry 🐍 (F.Naserizadeh)
Xiao,_Perry_Designing_embedded_systems.pdf
24.6 MB
طراحی سیستم های امبدد و اینترنت اشیا توسط ARM

🌟 انتشارات وایلی 2018

🔰 @raspberry_python
🔰 @RaspberryProject
👍1
پروگرم کردن میکروکنترلرها و مینی کامپیوترها با زبان C 👇
🌟 2018

🆔 @c_micro
Wolfram_Donat_Jumpstarting_C__Learn.pdf
1.6 MB
پروگرم کردن میکروکنترلرها و مینی کامپیوترها با زبان C 👇
🌟 2018

🆔 @c_micro
Forwarded from C & micro & fpga
Jozve 0 ta 100 C_@Electrovolt_ir.pdf
1.4 MB
جزوه برنامه نویسی C ویژه میکروکنترلرها

منبع : سایت الکتروولت
@c_micro