
NickTompkins
Members-
Content Count
15 -
Joined
-
Last visited
-
Days Won
1
NickTompkins last won the day on March 18 2016
NickTompkins had the most liked content!
About NickTompkins
-
Rank
Member
-
Here is some C code I have used to make the sine table for the fix_fft function if I wanted to change the size of the FFT #include <stdio.h> #include <math.h> #define POINTS 128 #define BITS 16 int main(void) { int n; int a=0; int TF_FLAG=POINTS-POINTS/4; printf("#define N_WAVE %d /* full length of Sinewave[] */\n",POINTS); printf("#define LOG2_N_WAVE %d /* log2(N_WAVE) */\n",(long)log2(POINTS)); printf("/* 3/4 of N_WAVE = %d */\n",TF_FLAG); printf("const int8_t Sinewave[N_WAVE-N_WAVE/4] = {\n"); for (n=0; n<POINTS; n++){ if(n==TF_FLAG){
- 25 replies
-
CCSimpleLink
NickTompkins replied to dpharris's topic in Tiva-C, Hercules, CC3XXX Launchpad Booster Packs
I know I am excited I wonder if Contiki will load without issues :-) -
TM4C129 (the newest tiva lauchpad) Serial.available() problem
NickTompkins replied to L.R.A's topic in Energia - TivaC/CC3XXX
We are having the same issue as described above. -
The SPI is finally working on the connected launchpad with MOSI/MISO pin swapped. We even have multiple modules working perfect. Thank you for your help! But we haven't figured out the I2C problem yet... But that is unrelated ;-)
-
Also on your working example what pins did you change in your code? I am having a rough go of this and I am unsure why.....
-
I will give that a go. Also I wonder about having the ability to run 4 of these modules with all the different SPI ports...
-
TM4C129 Connected Launchpad I2C not working
NickTompkins replied to xujianningkp's topic in Energia - MSP
Reading what he is saying is that he is using 2 Launchpads.... -
TM4C129 Connected Launchpad SPI Working?
NickTompkins replied to NickTompkins's topic in Energia - TivaC/CC3XXX
The Barometric Example isn't working it seems on TM4C129. -
Has anyone done anything with the SPI on this launchpad? Perhaps an example?
-
Awesome Oppa just awesome so I am still in the process to get the RC522 to work on the Connected Launchpad
-
So the Tiva Seemed to work with this as far as I could tell yet the connected launchpad could not..... I think we (our little group) will be looking into possible reasons why and in hopes we might be able to tap into some of the experience here on these forums.
-
[Energia Library] NFC card reading with Energia - MF RC 522
NickTompkins replied to eelcor's topic in MSP Energia Libraries
Yea what this guy said above :-) -
Or if the Tiva C will work with this?
-
We find that this doesnt quite port over well to the Connected Launchpad anyone else run into this problem?
-
Wow rob I think this is exactly what I was looking for.... Is there a way to pull data from your software like perhaps a counting int that is generated from the MCU? I have send you a PM btw....