Questions tagged [interfacing]

69 questions
2
votes
1 answer

How to hold data structures in memory G-wan with Java / Scala

I am looking at Gwan as a higher performance way to run our Scala application. Our use-case involves keeping a good amount of data in memory using Scala data structures. This is a bit more complex than a simple hashmap so I would want to avoid…
Lerchmo
  • 189
  • 1
  • 12
1
vote
2 answers

Interfacing SugarCRM with OpenERP

I am currently working on a project whereby I have to make both openERP and SugarCRM talk to each other. For example, if I add a new Account in SugarCRM, this account is also created in OpenERP...and if I create a new Customer in OpenERP, a new…
1
vote
1 answer

How to interface to C++ from D correctly?

I tried to inteface between C++ and D. The problem is that I can't compile it. I used the code/command line on the website > g++ -c foo.cpp > dmd bar.d foo.o -L-lstdc++ && ./bar and it didn't work: first of all the DMD compiler doesn't use .o files…
juffma
  • 39
  • 5
1
vote
2 answers

Is there a way to parse text from IBM Personal Communications into Excel?

I would like to create a script in Excel to look at my IBM Personal Communications Screen or data source(preferred) and then to parse that screen text into cells. Any ideas on where to even begin? Example of Screen
ts4r
  • 21
  • 5
1
vote
0 answers

Is move operation to odd memory bank from AL register possible?

.Suppose there are 2*2KB RAM chips starting from address 01000h and therefore ending at address 01fffh. The processor is 8086, so there is 16 bit data bus. As memory is byte organized , to accomodate all 16 bits we divide it into even bank and odd…
1
vote
0 answers

Micro controller interfacing:Chip enable program error

How to solve chip enable program error in progisp.172 for Interfacing 8051 microcontroller
mahesh8434
  • 11
  • 2
1
vote
0 answers

Arduino Interfacing via Lua

I want to communicate with my Arduino. I have the Arduino IDE installed and if I use it, everything works perfectly fine. Here is my sketch: const int ledPin = 11; // the pin that the LED is attached to void setup() { // initialize the serial…
Okaghana
  • 57
  • 6
1
vote
2 answers

USB and a personal-created device interfacing in Windows using C/C++

I know how to interface using the parallel port and also have a little idea on serial port interfacing. But is there a way to interface using the USB port in Windows? Or any links that would give tutorials on how to do this? Specifically, I wanted…
Neigyl R. Noval
  • 6,018
  • 4
  • 27
  • 45
1
vote
1 answer

SPI header File

I require the SPI header file so I may write a SPI master and slave for two PIC24FJ64GA002. I had one but I accidentally deleted it. Please may some one send me a link to download the header. As soon as possible as it is urgent.
sqwale
  • 11
  • 3
1
vote
1 answer

Why "fifoBuffer" values of indexes 2,3,6,7,10,11 are not passed in the teapotPacket[] array ?

I'm using the MPU6050 library by Jeff Rowberg. In the code, whole fifobuffer is not passed to the 'teapotPacket' array (for processing ,i.e, graphics emulation). Why only certain indexes are passed in the 'teapotPacket' array ?(to be precise, only…
Rohit Lal
  • 2,791
  • 1
  • 20
  • 36
1
vote
1 answer

Parallel Ports are great for controling devices but I want more bits

This is mostly a hardware question but with interesting software implications: Parallel ports are one of the wonders of the age. As well as printing things you can use them to control external devices, for example, by switching reed relays on and…
D.Jordan
  • 89
  • 1
  • 1
  • 3
1
vote
2 answers

Cross-platforming C++ functions to APL

I am currently writing C++ programs for APL. Up to now, what I've been doing is creating a function in APL, which runs the command prompt and calls the executable, with input and output files it creates as parameters and in turn, the C++ executable…
SS-Mag
  • 38
  • 5
1
vote
2 answers

IAR Embedded Workbench won't compile

I use IAR embedded workbench for my interfacing class and I can't compile even a simple C code. It aborts with the error: Internal Error: [CoreUtil/General]: Unexpected windows exception (0xe06d7363) at 752EC41F Error while running C/C++ Compiler
Jos
  • 468
  • 1
  • 7
  • 20
1
vote
1 answer

Interfacing zigbee usb stick module with MSP430(Fingerprint Development Kit Texas instruments C5515)

I am developing a wireless finger print based attendance management system to be deployed in my university(National university of sciences and technology Pakistan). I want to use "ETRX357USB+8M ZigBee Wireless Mesh Networking USB Stick" in my…
1
vote
2 answers

How to interface a memory hardware to a C++ program?

If I have a special hardware unit with some storage in it is connected to the computer and is memory mapped, so that its storage is accessible in the address range 0x55500000 – 0x555fffff how an I interface this hardware unit to my C++ program so…
Kadiam
  • 303
  • 4
  • 12