...undefined reference to
-
تاریخ: 1395/7/9 ساعت: 14:09
error, undefined reference due to - missing library . . . - order of object files . . . - library link order . . . - linking with gcc . . . یا ترتیب Object فایل ها نادرست هست یا این که کتابخانه مربوطه را اضافه نکرده ای... چه غلطا...
تفاوت بین دو عبارت include#
-
تاریخ: 1395/7/9 ساعت: 6:59
The difference between the two forms of the include statement #include "FILE.h" and #include <FILE.h> is that the former searches (نخستین جستجوها) for ‘FILE.h’ in the current directory before looking in the system header file directories. The include statement #include <FILE.h> searches the system h...
LAN87xx - Ethernet Routing Guidelines
-
تاریخ: 1395/7/8 ساعت: 6:23
- Keep the trace length difference between TX+ and TX- (or RX+ and RX-) in 700 mils (17 mm). - Keep RX+/- signal on the top layer, the RX+/- signal should avoid any vias, if possible. Avoid right angle signal trace. - The crystal/oscillator clock and the switching noise from digital signals should b...
با این نوناشون... TX28....
-
تاریخ: 1395/7/8 ساعت: 6:23
.../arch/arm/boot/dts/imx28-tx28.dts reg_usb1_vbus: regulator@1 { compatible = "regulator-fixed"; reg = <1>; regulator-name = "usb1_vbus"; regulator-min-microvolt = <5000000>; regulator-max-microvolt = <5000000>; //gpio = <&gpio3 27 GPIO_ACTIVE_HIGH>; enable-active-high; };
Mainline Linux
-
تاریخ: 1395/7/8 ساعت: 6:23
Mainline Linux refers to the Linux sources provided by ke el.org. The mainline sources can be downloaded from ke el.org in various different formats. خوب! شرکت ها، توزیع لینوکس خودشان را بر اساس این کد پیاده سازی می کنند. ویژگی های معماری پردازنده، سخت افزار، درایورها، و ... خیلی چیزهای دیگر... مختص...
TRITON-TX28
-
تاریخ: 1395/7/8 ساعت: 6:23
Ethe et on TRITON-TX28: - 2x MACs on micro - 1x PHY on module - IEEE1588 compliant (پروتکل زمان دقیق - همزمانی بین گره های (تجهیزات) یک شبکه ذاخلی)
اهمیت نسخه لینوکس برای شما
-
تاریخ: 1395/7/8 ساعت: 6:23
Yocto/Open Embedded on SMARC Ubuntu 12.04 (LTS) Ubuntu 14.04 (LTS) KARO-ARM virtual appliance Ubuntu 12.04 - 32 bits اول روی نسخه 64 بیتی بالا آوردمش! خب! برای کد نویسی خوب بود. اما در کامپایل RootFS داستان داشتم. خیلی کلنجار رفتم باهاش! نشد که نشد. شاید هم شد راضی کننده نبود! بنابراین رفتم سراغ نسخ...
لعنت بر گُوه در گِل (گوگل)
-
تاریخ: 1395/7/8 ساعت: 6:23
آقا این چه مسخره بازیه که گوگل درآورده... تحریم...! برجام...! مثل خر تو گل موندم... چرا دانلود نمیشه... چرا VirtualBox از پراکسی ویندوز (میزبانش) استفاده نمیکنه... Repo is a tool built on top of Git that makes it easier to manage projects that contain multiple repositories, which do not need to be o...
YOCTO
-
تاریخ: 1395/7/8 ساعت: 6:23
پروژه Yocto : مجموعه ابزارهای منبع آزاد برای ساختن سیستمهای سفارشی توکار YOCTO is just another way to build uBoot, Linux Ke el & Filesystem. Difference from the standard direct compilation is, that Freescale now officially adds all their support through YOCTO. The Yocto project provides a reference ...
OpenEmbedded Layers
-
تاریخ: 1395/7/8 ساعت: 6:23
https://layers.openembedded.org/layerindex/branch/krogoth/layers/
کامپایل در لینوکس
-
تاریخ: 1395/7/8 ساعت: 6:23
% c++ -O2 -I/usr/local/include -Wall -c -o test.o test.cpp % cc -L/usr/local/lib test.o -lPocoFoundation -o test -Wall enables all compiler's wa ing messages. This option should always be used, in order to generate better code. In practice, the optimization level -O2 is needed to give good wa ings.....
An Introduction to GCC for the GNU Compilers gcc and g++ #1
-
تاریخ: 1395/7/8 ساعت: 6:23
$ sudo apt-get install g++ build-essential $ g++ –version // hello.c #include <stdio.h> int main (void) { printf ("Hello, world!n"); retu 0; } $ gcc -Wall hello.c -o hello $ ./hello Hello, world! // hello.cc #include <iostream> int main() { std::cout << "Hello World!" << std::endl; retu 0; } $ g++ -...