Activity
From 01/30/2013 to 02/28/2013
02/27/2013
- JC 02:33 PM Software Development: RE: How to get system time?
- This stack overflow article seems to point to an eclipse bug and possible fix.
http://stackoverflow.com/questions/8881617/constants-not-loaded-by-compiler - JC 02:11 PM Software Development: RE: How to get system time?
- At least that file has the CLOCK_MONOTONIC in it but doesn't have clock_gettime...
- JC 01:56 PM Software Development: RE: How to get system time?
- Looks like you want linux/time.h located at /usr/local/oeore-i686/sysroots/armv5te-angstrom-linux-gnueabi/usr/include/linux/time.h
- MF 01:53 PM Software Development: RE: How to get system time?
- Where is the correct time.h file? There seem to be alot of them in various include directories.
#include <time.h>
if I right click then select "Open Declaration" it opens:
/usr/local/oeore-i686/sysroots/armv5te-angstrom-linux-gnue... - JC 01:21 PM Software Development: RE: How to get system time?
- And here is a discussion of CLOCK_REALTIME VS CLOCK_MONOTONIC.
http://stackoverflow.com/questions/3523442/difference-between-clock-realtime-and-clock-monotonic - DG 01:19 PM Software Development: RE: How to get system time?
- Not sure why it's not finding CLOCK_MONOTONIC, it's defined in time.h:
45 * The IDs of the various system clocks (for POSIX.1b interval timers):
46 */
47 #define CLOCK_REALTIME 0
48 #define CLOCK_MONOTONIC ... - MF 01:01 PM Software Development: RE: How to get system time?
- Thanks,
I added rt to the project Properties->C/C++ Build -> Settings -> Cross G++ Linker -> Libraries
I had already included time.h
It compiled if I set the first parameter of clock_gettime() to 0, but I still can't reference CLO... - DG 12:39 PM Software Development: RE: How to get system time?
- Hi Mary,
Be sure you are linking to the rt library which implements that call (as well as including the time.h header). Use -lrt as a linker argument to do this. - MW 12:34 PM Software Development: RE: How to get system time?
- Did you include <time.h> in your code?
- How do you get the system time in order to timestamp events?
Tried clock_gettime() but got a linker error: "undefined reference to `clock_gettime' "
There was also no reference for CLOCK_REALTIME, or CLOCK_MONOTONIC.
I would lik... - CO 08:01 AM FPGA Development: RE: I2C issues on SLX45
- Patched file is:
MDK/sw/ARM/linux/drivers/fpga/fpga_i2c.c
attached... - CO 07:56 AM FPGA Development: RE: I2C issues on SLX45
- Wow, this is a while ago. If I remember correctly the FPGA i2c driver functioned correctly after Mike's changes but, in my opinion, it was a little unoptimised. But that was for my specific app which wanted to push a lot of data across i...
- MC 06:40 AM FPGA Development: RE: I2C issues on SLX45
- Hello All,
Can you please tell me if your patch about I2C FPGA linux driver is available and working?
If yes, can you please provide a sort of explaination about the exact steps to apply it to the MDK_2012-08-10 release?
Have you su...
02/25/2013
- RT 10:00 AM FPGA Development: RE: Programming FPGA on power up.
- Got it sorted now, just noticed the loadaddr was incorrect
- RT 09:09 AM FPGA Development: RE: Programming FPGA on power up.
- Hi
I am running MityDSP Development kit Module L138-FI-225-RC.
-Rex - MW 09:05 AM FPGA Development: RE: Programming FPGA on power up.
- Not seeing anything obvious. For the load process, I believe you need to specify an image size larger than the filesize (need to doublecheck this for parallel loading, but I know is true for serial loading) as the configuration process ...
- Hello
We have been trying to save our .bin file to flash and load the FPGA on power up of our MityDSP.
Our board details are:-
U-Boot > factoryconfig
Factory Configuration:
Config Version : 1.1
MAC Address : 00:50:C2:E6:76:7...
02/21/2013
- MF 01:38 PM Software Development: RE: How to specify port in client/server application
- I knew there was a simple answer. Thanks!
Here's the updated code, which compiles.
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#in... - MW 12:39 PM Software Development: RE: How to specify port in client/server application
- Hi Mary,
sockaddr_in is most certainly supported by the compiler. We use it all the time. The man page suggests you need a couple of additional headers, from the man page you need:
#include <sys/socket.h>
#include <netinet/in.h>
... - MF 12:17 PM Software Development: RE: How to specify port in client/server application
- Yes, I was just reading that. They use slightly different elements:
struct sockaddr_in serv_addr, cli_addr;
portno = atoi(argv[1]);
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = INADDR_ANY;
... - TI 11:44 AM Software Development: RE: How to specify port in client/server application
- here's a pretty decent tutorial on linux sockets...
http://www.linuxhowtos.org/C_C++/socket.htm
- Hello,
I am running Linux on the ARM and DSP/BIOS on the DSP. I need to implement a client and server on a particular port on the ARM side. I am using MDK_2012-08-10.
How do you specify the port to listen on or connect to? There...
02/14/2013
- How do you configure / customize the tool chain to the mitydsp board? eg the current version of gnu compiler for the board is 4.3.3. How is it targeted to the mityboars?
I need to configure the 4.7.2 version for the mity board. When a s... - JY 10:53 AM Software Development: RE: Trouble with writing to UART2
- Thank You for your help, Ultimately I need to use this on the PRU and I saw how TI is doing it through there Profibus utilities module. They set up the pin mux to have PRU0 R30[16] toggle the enable line. This seems to be the most effici...
- MW 10:49 AM Software Development: RE: CLK frequency increase using DSP only
- Check the Datasheet for the speed grade for the L138-FI-225-RC, though I think the F means CPU speed up to 456 MHz. The OMAP-L138 datasheet specifies all of the maximum operating frequencies for the clock domains within the part. The l...
- MW 10:46 AM Software Development: RE: CLK frequency increase using DSP only
- OSCin is 24 MHz. It's fixed by the crystal on the part.
The documentation you would need to read is for the "TPS65023 PMIC":http://www.ti.com/product/tps65023&lpos=Middle_Container&lid=Alternative_Devices from TI. These I2C commands... - RT 10:41 AM Software Development: RE: CLK frequency increase using DSP only
- Hi, I too would like to increase the running speed towards 456MHz. I have managed to change the speed as per your instructions. and would like to have some further information.
Is there any documentation to explain the following
i2c ...
02/13/2013
- MW 07:23 PM Software Development: RE: Trouble with writing to UART2
- You need to use the TIOCRS485 ioctl on the serial port file descriptor with the serial_rs485 structure.
It involves writing a bit of code. You can't do it with any shell tools that I am aware of.
See the example code in the rs485_... - JY 07:08 PM Software Development: RE: Trouble with writing to UART2
- Additionally, it appears the pin muxing was set up such that the GP0[9] was not selected due to AMUTE being selected by the mcasp initialization. If i disable the mcasp initialization in the kernel build GP0[9] is mapped to the rs485 ena...
- JY 06:41 PM Software Development: RE: Trouble with writing to UART2
- I am using the 2.6.34 kernel and it appears it already has the patch applied. I was able to get it to work by reassigning the pins and manually applying the RTS line. With the original configuration, am I supposed to toggle the GPO pin m...
- MW 03:06 PM Software Development: RE: Trouble with writing to UART2
- Hi Jeremy / Tim,
The link Tim pointed you to is for the MityARM-335x, not the MityARM-180x, though a similar patch exists for that as well for the RS-485 drivers.
Sorry for the confusion.
The patch you need is "here":http://su... - TI 03:00 PM Software Development: RE: Trouble with writing to UART2
- Jeremy
The RS485 board has an enable that must be managed. I believe you need a newer version of the driver to control it.
Support for the RS-485 board was added in commit 3e1a3878bbe545b7d4a2ab65023a9938b0d5984e
dated 2012-12-11
see... - I am having some difficulty with writing to the UART2 on the AM1810. I have everything setup such that I can read from the port with out any problems. When I run the command cat /proc/tty/driver/serial I am able to see the Tx count incre...
02/12/2013
- MW 05:35 PM Software Development: RE: U-Boot Source Code
- Hi Terrence,
To confirm: are you looking for u-Boot code, or the User Boot Loader (UBL) code?
As Jonathan and Alex indicate, u-Boot is availble from GIT. The MDK should include a copy of the UBL project, which I believe was compil... - AB 05:00 PM Software Development: RE: U-Boot Source Code
- Terrence,
The U-Boot source code is maintained in a GIT repository and not wholly contained in the MDK however a seed version of the GIT repository is included but you should update it to the latest.
Considerable information is on ... - JC 04:34 PM Software Development: RE: U-Boot Source Code
- Also the git repository can be explored here. http://support.criticallink.com/gitweb/?p=u-boot-mitydspl138.git;a=summary
U-boot wiki page: [[Das_U-Boot_Port]] - JC 04:31 PM Software Development: RE: U-Boot Source Code
- Have you checked the sw/ARM directory in the MDK?
-Jonathan - Does anyone know where I can find the U-Boot (UBL version 1.65:2.28) source code? Does the UBL source come bundled with the MDK? I am using MDK-2011-12-05.
- SP 10:12 AM Software Development: RE: Ethernet packet loss
- Hi Mike,
We are using your L138-FG-225-RC in combination with a propriatary base (=industrial IO) board --> MII is connected and used.
Stéphane - MW 10:07 AM Software Development: RE: Ethernet packet loss
- Are you using a custom board? Are you using the MII or the RMII port? If RMII, what device is sourcing the reference clock?
-Mike
- SP 09:35 AM Software Development: RE: Ethernet packet loss
- Hi Mike,
It’s not a u-Boot/Linux problem.
We are running SysBios on the ARM after leaving ROM code…
Best regards
Stéphane
- MW 07:13 AM Software Development: RE: Ethernet packet loss
- Hello,
I looked at your E2E post, and I think I *may* understand the problem, but I am not sure.
By changing the frequency in the bootloader and not in the kernel, I'm not sure if the kernel is initializing with the right idea of w...
02/11/2013
- SP 03:28 AM Software Development: RE: Ethernet packet loss
- I also made a post in the E2E: http://e2e.ti.com/support/embedded/bios/f/355/t/244852.aspx
Stéphane
02/08/2013
- SP 12:19 AM Software Development: RE: Supply voltage for RVDD (internal ram supply)
- Hi Mike,
Thanks for the information and for the hint/link to the errata sheet.
Stéphane
02/07/2013
- MW 07:01 AM Software Development: RE: Supply voltage for RVDD (internal ram supply)
- RVDD is connected to the CORE voltage.
So when you run at 456 MHz, the RVDD is bumped up to 1.3 volts as well.
The minimum core voltage that can be applied is 1.2 volts (even if you drop your OPP down to 200 MHz or below) because o... - Hello,
In the OMAP-L138 data sheet (sprs586d) chapter 2.8.27, I see that RVDD (internal ram supply) needs 1.2V respective 1.3V for 456MHz.
To what voltage source are these pins connected to? I just see 1.2V, 1.8V, 3.3V and the variable... - Hello,
We are using the OMAP-L138 with SysBios on both ARM and DSP. In a test where we are sending nonsense data from the ARM to a PC, we reach a bandwidth from over 4MB/s with 8K UDP packets at 300MHz. When we now increase the CPU freq...
02/04/2013
- JC 10:48 AM Software Development: RE: Linux boot time on the MityArm1808F
- See this link for an example of loading the fpga image from uboot.
http://support.criticallink.com/redmine/projects/arm9-platforms/wiki/Programming_the_FPGA#Using-u-Boot-to-load-the-FPGA
And this one for loading StarterWare.
http://...
02/02/2013
- AK 08:28 AM Software Development: RE: Linux boot time on the MityArm1808F
- Thank you for quick response.
It seems that StarterWare is a feasible option.
If I understand correctly, StarterWare will create an image that will be loaded to the NOR flash memory and replace (or not?) the linux kernel. U-Boot w... - MW 06:43 AM Software Development: RE: Linux boot time on the MityArm1808F
- Hello Alex,
We have not tried to much to get the boot times down to the levels that you are requiring. Keep in mind that the boot time of a "stock" implementation also includes the UBL load time (User Boot Loader, loaded from SPI, co... - AK 06:19 AM Software Development: RE: Linux boot time on the MityArm1808F
- English is not my first language so please +BEAR+ with me. :)
- Hello,
I'm new to ARM software development so please bare with me.
+Some background on the project:+
I'm working on a data logger project based on the MityArm1808F (currently using the Industrial IO Development Kit). My plan is ...