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

https://t.me/joinchat/HU0aoFCv4MTCt4fz0h6AZg
کانال های مرتبط با این کانال :
@raspberry_python
@micropython_iot
@ai_dsp
Download Telegram
قسمت ده تا چهارده.rar
100.2 MB
🔴🌟 آموزش زبان C در رزبری پای، قسمت 10 تا 14 (زبان انگلیسی)

@c_micro
Grundlagen der Hard- und Software der
Mikrocontroller #ATtiny2313, #ATtiny26 und
#ATmega32

انتشارات اشپرینگر
@c_micro
Herbert_Bernstein_auth_Mikrocontroller_.pdf
15 MB
Grundlagen der Hard- und Software der
Mikrocontroller #ATtiny2313, #ATtiny26 und
#ATmega32

انتشارات اشپرینگر
@c_micro
video_2018-04-18_08-30-32.mov
7.7 MB
🔴🌟 آموزش زبان C در رزبری پای، قسمت 15 (زبان انگلیسی)

@c_micro
قسمت 16 تا 20.rar
120.3 MB
🔴🌟 آموزش زبان C در رزبری پای، قسمت 16 تا 20 (زبان انگلیسی)

@c_micro
🔹میکروکنترلر KL03 مبنی بر پردازنده Cortex-M0 از کمپانی FreeScale

🔸ابعاد این میکروکنترلر تنها 2x1.6 mm است!
@C_micro
Msp_Exp430G2
برد شرکت TI
معروف به LanchPad

@c_micro
🌟🌟 مرجع کامل stm32👇
🌟2016

@c_micro
Carmine Noviello - Mastering STM32 (2016, Leanpub).pdf
64 MB
🌟🌟 مرجع کامل stm32
🌟2016

🆔 @c_micro
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